Jesse Hill
12/04/2021, 1:37 AMverticalScroll
modifier. I put the code in this gist and will comment with my findings as I explore why this is happening.Chris Fillmore
12/04/2021, 2:02 AMWindow
up so that the text field is usable while the keyboard is open. (I may be wrong on this detail and someone who knows better may correct me.)
You can configure the keyboard behaviour (somewhat) using android:windowSoftInputMode
https://developer.android.com/guide/topics/manifest/activity-element#wsoftadjustResize
value, which will shrink the window (rather than pan it), so your topBar should stay at the topJesse Hill
12/04/2021, 2:26 AManimateScrollTo
. So that makes me think it's not the window but I'll have to make sure that the Column is actually scrolling and that it's not just the window resizing. Thanks for the tip!android:windowSoftInputMode="adjustResize"
did the trick. Thanks Chris!