skip to Main Content

Here are my code:

enter image description here

enter image description here

This is in android.

enter image description here

2

Answers


  1. 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

    Login or Signup to reply.
  2. In Folder Android > app > src > main > AndroidManifest.xml

    <activity
      -------------
      android:windowSoftInputMode="adjustResize"
      -------------
    </activity>
    

    Change to :

    <activity
      -------------
      android:windowSoftInputMode="adjustPan"
      -------------
    </activity>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search