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

301 Views Asked by At

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

1

There are 1 best solutions below

0
On BEST ANSWER
<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.