所以我在这里查看了这份文档https://developer.android.com/jetpack/compose/text#enter-modify-text
我设法使用以下方法创建了一个文本字段 (EditText):
document.body.classList.toggle('dark'); //toggle the HTML body the class 'dark'
switchButton.classList.toggle('active');//toggle the HTML button with the id='switch' with the class 'active'
现在我想设置我们在 XML 中的 @Composable
fun EmailField() {
var text by remember { mutableStateOf("") }
TextField(
colors = TextFieldDefaults.textFieldColors(
textColor = Color.White,
focusedIndicatorColor = Color.White,
focusedLabelColor = Color.White
),
value = text,
onValueChange = { text = it },
label = { Text("Email") }
)
}
。那么有没有这样的等价物或其他方式来实现?
我想创建这样的东西:
感谢任何帮助或领导