flutter_multi_formatter icon indicating copy to clipboard operation
flutter_multi_formatter copied to clipboard

A set of formatters for text and input fields. Not only it can format a phone number but also automatically detect a country dial code and the name of the country. It also can apply formatting for cur...

Results 22 flutter_multi_formatter issues
Sort by recently updated
recently updated
newest added

CountryDropdown how to not show the flag in the box, only country code

correction for: https://github.com/caseyryan/flutter_multi_formatter/issues/154 In countries where "," is used as a decimal separator, users commonly input both "," and "." to represent decimals. This commit adjusts the logic to detect...

Description: In Brazil and other countries using "," as a decimal separator, it's common for users to input both "," and "." to represent the decimal point. However, when displaying...

In Germany, there are phone numbers with a length of 10. Information from these sources: https://en.wikipedia.org/wiki/Telephone_numbers_in_Germany https://callhippo.com/blog/general/germany-phone-number-example

Incorporating support for the RuPay card network.

Decimal fractions cannot be displayed when using the ShorteningPolicy parameter print('1200000'.toCurrencyString(shorteningPolicy: ShorteningPolicy.Automatic, mantissaLength: 2)); -> 1M The result should be 1.2M

Hi, I found a bugs in `formatter_utils.dart` file. with `mantissaSeparator = ','` and input string is 1.000 (equal 1000) `_detectFractionSeparator`still detect `.` as a fraction separator. Please fix this bugs...

Когда курсор стоит после `trailingSymbol`, то при вводе он остается на том же месте. Было бы логично переносить его в конец вводимой суммы, то есть перед `trailingSymbol` https://github.com/caseyryan/flutter_multi_formatter/assets/61468224/8526e8e4-3bf5-4c5e-8284-69f701058243

I am using the CurrencyInputFormatter with a leading symbol (let's say `EUR`). When I enter a non-zero digit the cursor is positioned correctly next to the period (which is correct...