Working with Keyboard in Compose is a PAIN (for me...
# compose
t
Working with Keyboard in Compose is a PAIN (for me). Compose-Version: 1.2.0-alpha07 I have applied in my Activity : android:windowSoftInputMode="adjustResize"
Copy code
Column(
	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?