Chethan
10/16/2020, 11:48 AMScrollableColumn(modifier = Modifier.padding(20.dp)) {
Column {
UserComment()
}
}
@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
)
}