Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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:

keyboard image

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)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

This parameter will solve the problem

keyboardType: TextInputType.numberWithOptions(decimal: true),

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...