Does anyone have a recommendation for how to setup...
# compose
c
Does anyone have a recommendation for how to setup imePadding, focus, etc. so that focusing on a TextField also brings some other Composable into view above the keyboard as well? An example would be a row of buttons below the TextField that should also be in view while the keyboard is open.
So far my best recommendation is to either • give up and place relevant buttons above the TextField • place the buttons in the supportingText parameter instead I found that using something like a BringIntoViewRequester sort of worked but always created some amount of scroll jumping/jank. Using IME passing works if there is nothing else below the buttons in your view. I'm curious if anyone has explored a way to intercept the focus event and adjust the scroll with an additional offset.