Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.3k views
in Technique[技术] by (71.8m points)

flutter - TextInputType.numberWithOptions doesn't show comma or dot

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This parameter will solve the problem

keyboardType: TextInputType.numberWithOptions(decimal: true),

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...