Search code examples
androidflutterlayoutandroid-softkeyboardiphone-softkeyboard

after embed my flutter app into android app keyboard overlapping text field but iOS keyboard working perfectly


I have a flutter app which was embedded into android and iOS also but the keyboard hides the textfield means not slide up textfield as per soft keyboard activated flutter layout not resize/adjust so entered information not show properly

enter image description here

enter image description here


Solution

  • <activity android:name=".activities.MainActivityFlutter"
      android:windowSoftInputMode="adjustResize"/>
    
    <activity
        android:name="io.flutter.embedding.android.FlutterActivity"
        android:theme="@style/MyTheme"
        android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
        android:hardwareAccelerated="true"
        android:windowSoftInputMode="adjustResize"
        />
    

    we have to set property in Manifest.xml at Android app.