Textfield doesn’t scroll up to keep its content ab...
# compose
c
Textfield doesn’t scroll up to keep its content above the keyboard , content of textfield is behind the keyboard all the time, Although I have put under scrollableCoulmn , here is my code . what I am not doing here ?
Copy code
ScrollableColumn(modifier = Modifier.padding(20.dp)) {
    Column {
        UserComment()
    }
}
Copy code
@Composable
fun UserComment() {

    var textValue = remember { mutableStateOf(TextFieldValue("")) }
    // val context = ContextAmbient
    TextField(
        value = textValue.value,
        modifier = Modifier.fillMaxWidth().padding(top = 15.dp).heightIn(min = 100.dp),
        onValueChange = {
            textValue.value = it
        },
        backgroundColor = Color.White
    )
}