Iam trying to implement small a input form in react-native. But when I try opening the keyboard, it pushes and wraps the content away. I tried using KeyBoardAvoidingView and ScrollView at different views but not worked for me(did not get desired output).Here is the output after opening the keyboard
Go to AndroidManifest.xml file generated by React Native and add the following attribute in the concerned screen/activity.
<activity
...
android:windowSoftInputMode="adjustNothing">
</activity>
or
<activity
...
android:windowSoftInputMode="adjustResize"
</activity>