rophuine
06/19/2020, 1:47 PMVerticalScroller
) which takes up most of the screen, with a Column
wrapping the VerticalScroller
and a TextField
element below it, but have the whole thing take up the entire view port that isn't covered by the keyboard (e.g. if the keyboard is hidden, it'll take up the whole height - if the keyboard is shown, it'll reduce in height to take up all the available height except what the keyboard is covering).grandstaish
06/19/2020, 2:10 PMandroid:windowSoftInputMode="adjustResize"
? See https://developer.android.com/training/keyboard-input/visibility#RespondAdam Powell
06/19/2020, 2:18 PMModifier.insetsPadding(bottom = true)
and similar, which you can apply to whatever content you'd like. It works really well in my experience with it so far.Spacer
if that makes more sense in your layout, or whatever else.cb
06/19/2020, 2:22 PMZach Klippenstein (he/him) [MOD]
06/19/2020, 3:26 PMVerticalScroller
-like composable that works with the new IME controller APIs in android 11. I think it would be pretty straightforward to buildrophuine
06/20/2020, 5:38 AM