I would like to create a screen that has a behavior similar to common chat apps e.g. Hangouts where there's a scrollable section of the page and an Entry
with a Button
underneath that updates the scrollable section.
I currently have this implemented with a Grid
that has a *
row (with the scroller) and an Auto
row (with the Entry
).
On iOS, when I tap the Entry
, the keyboard popping up hides the lower half of the screen.
On Android, when I tap the Entry
, the keyboard slides up, but the UI slides up as well, getting rid of the top half of the UI.
I get that, yeah, this has been a bug for a while, it's not likely to be fixed any time soon, and so on. Is there a different way to approach this than having a Grid
lay out the sections of the page that will work for this use case?