Hey guys, how can I make the keyboard dont hide a ...
# compose
y
Hey guys, how can I make the keyboard dont hide a text that I have under my textField?
m
I'm assuming you mean that the keyboard is overlapping with the textField coordinates, Hence, it prevents Interacting with the textField easily, in that case you might take a look at
Modifier#imePadding()
API to maintain a padding between the keyboard and your textField
👀 1
y
Thank you @MR3Y, will try it.