How can I achieve a TextField that’s aligned to th...
# compose
u
How can I achieve a TextField that’s aligned to the bottom of the screen and floats above the keyboard?
d
Maybe use Box which contains your screen content and TextField with Accompanist
Modifier.align(Alignment.Bottom).imePadding()
❤️ 1
u
Thanks Wojciech, You are awesome. Let me try that.