bdlukaa / fluent_ui

Implements Microsoft's WinUI3 in Flutter.
https://bdlukaa.github.io/fluent_ui/
BSD 3-Clause "New" or "Revised" License
2.79k stars 435 forks source link

EditableComboBox - add inputFormatters #1041

Open dungnguyen2703 opened 3 months ago

dungnguyen2703 commented 3 months ago

When I use EditableComboBox, if user input by keyboard instead of our list. In some case we need to use inputFormatters to make user input as our format only.

Thank you

bdlukaa commented 3 months ago

I don't understand the issue. Could you explain it better?

dungnguyen2703 commented 3 months ago

Hi, I need something like this:

EditableComboBox( onTextChanged: , onFieldSubmitted:, value: , placeholder: , onChanged:, items: , inputFormatters: , // add this like textbox have ),

Thanks