Apr 23, 2021
Hey Blackjov. You can set the KeyboardOptions to keyboardType Number. Is that what you want?
```
TextField(
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number),
value = startedAtText,
onValueChange = {
},
)
```
Hey Blackjov. You can set the KeyboardOptions to keyboardType Number. Is that what you want?
```
TextField(
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number),
value = startedAtText,
onValueChange = {
},
)
```