Does any one know how to handle bottomsheet (persi...
# compose
m
Does any one know how to handle bottomsheet (persistent) moving up when soft keyboard is opened? When the keyboard is opened, I would like the bottomsheet to not move up/hide. Thanks!
c
What value are you using for
android:windowSoftInputMode
?
m
Did not set that value in my code, but I tried android:windowSoftInputMode="adjustResize" in the <activity></activity> in AndroidManifest.xml..din't make any difference.
@Chris Fillmore Do you happen to know what flag might work in my case? Thanks.
I found the solution to this, when the value is set to
adjustNothing
it works.
👍 1