Hello, I have a `Column` with many `TextField` in...
# compose
m
Hello, I have a
Column
with many
TextField
inside it, when I tap on the last
TextField
the Keyboard opens up and Covers the last
TextField
I have set
android:windowSoftInputMode="adjustResize"
in manifest but nothing changes.
a
👋 This is a know issue in ✏️ https://issuetracker.google.com/u/0/issues/192043120 There are some hacky solutions for this problem like this: in answer 19
Copy code
relocationRequester.bringIntoView()
m
thanks
👍 1