I'm trying to set input type of the TextField as a Binary but there is no KeyboardOptions KeyboardType as Binary.
So how can I accomplish this ?
TextField(
value = text,
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number),
onValueChange = {
text = it
},
label = { Text("Enter Binary") }
)