Tobias Gronbach
04/10/2022, 3:32 PMColumn(
modifier = Modifier.verticalScroll(rememberScrollState())
){
// some Text-Composables
TextField1() // singleLine
TextField2() // multiLine
}
When I focus TextField2 it gets pushed above keyboard (that's cool!). BUT when I enter text the lines disappear below the keyboard.
I still can scroll up and then see what I've written. But for a user it's strange to write and not to see what's written. Anyone else
been there or know how to help?