Problem
I've implemented textfield features to create login screen. But textfields doesn't show because of overwrapping keybord.
The following exapmle is the below (reference: here)
Solution
You should check two points.
-
Have you added
<activity android:windowSoftInputMode="adjustResize"
in yourAndroidManifest.xml
file? -
Have you add
imePadding()
modifier to your Modifier you want to implement it?
コメント