How can I make the TextField accept only integers as input and how can I limit the number of digits to 2?
I have already set keyboard as below but this allows to input decimals and I need only positive Integers
keyboardOptions = KeyboardOptions(
keyboardType = KeyboardType.Number
)