在TextField
的情况下,我们可以改变backgroundColor
的文本字段如下
TextField(
value = text.value,
onValueChange = { text.value = it },
colors = TextFieldDefaults.textFieldColors(backgroundColor = Color.Red)
)
但是,BasicTextField
中没有这样的东西
您可以使用Modifier.background
在相同的方式与任何其他视图没有自定义装饰(如TextField
的情况下)
BasicTextField(
value = text, onValueChange = { text = it },
modifier = Modifier.background(Color.Red)
)