LeandroNovak / extended_masked_text

A small set of custom TextEditingControllers that allows masked text inputs for flutter apps
https://pub.dev/packages/extended_masked_text
MIT License
31 stars 12 forks source link

String alignment #1

Open LeandroNovak opened 3 years ago

LeandroNovak commented 3 years ago

Supose we have a mask 000.000-00 and user types 1234, with right alignment we should get 000.012-34. With left alignment, for the same mask and user input we should get 123.400-00

iksent commented 3 years ago

Waiting for similar feature for MoneyMaskedTextController. This is really uncomfortable for users to get "00,12" when trying to input 12 (with precision = 2)

LeandroNovak commented 3 years ago

I've decided to make a separated controller for this behavior as it would create undesired complexity to the existing one. I will provide a new release with this update as soon as I can.

guidospadavecchia commented 3 years ago

I've decided to make a separated controller for this behavior as it would create undesired complexity to the existing one. I will provide a new release with this update as soon as I can.

Any updates on this? We need to be able to type from left to right, instead of from right to left when using a MoneyMaskedTextController with precision. Thank you

LeandroNovak commented 3 years ago

I'm still working on these features. I haven't had much time to work lately, but I've made some progress in the past few weeks. So I hope to release at least a preview soon