Hide keyboard in react-native
The problem with keyboard not dismissing gets more severe if you have keyboardType=”numeric”, as there is no way to dismiss it. Replacing View with ScrollView is not a correct solution, as if you have multiple textInputs or buttons, tapping on them while the keyboard is up will only dismiss the keyboard. Correct way is to … Read more