There is a build-in function for hide keyboard in react-native call Keyboard.dismiss()
, but what I wish is the native keyboard will disable during the app running.
**My app no have any TextInput, I using react-native-webview for entire layout
What I have try is add code below to AndroidManifest.xml
<activity android:name="com.your.package.ActivityName"
android:windowSoftInputMode="stateHidden" />