我正在尝试将 TextField 的输入类型设置为二进制,但没有 KeyboardOptions KeyboardType 作为二进制。
那么我怎样才能做到这一点呢?
TextField(
value = text,
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number),
onValueChange = {
text = it
},
label = { Text("Enter Binary") }
)