Last updated:
0 purchases
iban formatter
Getting started #
It allows formatting the IBAN of each country.
Usage #
final formatter = IbanTextInputFormatter(
countryCode: CountryCode.TR,
added: Added.two,
);
final formatter = IbanTextInputFormatter(
countryCode: CountryCode.UA,
added: Added.zero,
grupSize: 2,
);
copied to clipboard
Added #
With Added you can choose how many digits to start with. For example
Added.two = 42 ....
Added.four = 4242 ....
copied to clipboard
Grup Size #
With group size you can specify how many groups the grouping will be. For example
grupSize = 2 => ... 42 42 ...
grupSize = 4 => ... 4242 4242 ...
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.