TextInputType.numberWithOptions(decimal: true),
I'm using the above code as a keyboardType in my TextFormField but in some devices, the device doesn't display comma or dot. Screenshot is given below:
keyboardType
TextFormField
Thinking of using this package: https://pub.dev/packages/virtual_keyboard
Any idea on how to solve it?
This doesn't solve my problem because in my case, it's happening on Android. Flutter TextField with number keyboard, comma is needed instead of period (Only iOS)
This parameter will solve the problem
keyboardType: TextInputType.numberWithOptions(decimal: true),
2.1m questions
2.1m answers
60 comments
57.0k users