dimsuz
06/21/2021, 5:17 PMadjustResize
mode and a Column
with verticalScroll
and a TextField
inside, and when I click on the text field, keyboard obscures it, no scrolling happens. This is the latest beta.
Is this a known bug/limitation?
See code I use in the thread.dimsuz
06/21/2021, 5:18 PMsetContent {
MyAppTheme {
Surface(color = MaterialTheme.colors.background) {
Column(
modifier = Modifier.verticalScroll(rememberScrollState())
) {
Greeting("Android")
TextField(
modifier = Modifier.padding(top = 400.dp),
value = "",
onValueChange = {}
)
}
}
}
}
dimsuz
06/21/2021, 5:19 PMLukasz Burcon
06/21/2021, 8:13 PMRelocationRequester
sounds like a good use heredimsuz
06/21/2021, 9:45 PMTonic
07/29/2021, 10:15 AMbatuhan ardor
11/01/2021, 8:52 PM