Here are my code:
This is in android.
2
Basically Your keyboard is not avoiding your view or component. so you’ll have to wrap your Component in
<KeyboardAvoidingView> //your component </KeyboardAvoidingView>
additionally you can use props of keyboard avoiding view
In Folder Android > app > src > main > AndroidManifest.xml
<activity ------------- android:windowSoftInputMode="adjustResize" ------------- </activity>
Change to :
<activity ------------- android:windowSoftInputMode="adjustPan" ------------- </activity>
Click here to cancel reply.
2
Answers
Basically Your keyboard is not avoiding your view or component. so you’ll have to wrap your Component in
additionally you can use props of keyboard avoiding view
In Folder Android > app > src > main > AndroidManifest.xml
Change to :