When the TextField is at the bottom of the screen,...
# compose
k
When the TextField is at the bottom of the screen, the TopAppBar and content will move up after the keyboard pops up. How to prevent them from moving? I want to make a TextField like Jetchat sample app's.
a
Set
android:windowSoftInputMode="adjustResize"
on the activity element in the manifest
🙏 1
We'll set this up to be more automatic later
k
Thanks 😊. It works
👍 1