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