iban_formatter 0.0.2 copy "iban_formatter: ^0.0.2" to clipboard
iban_formatter: ^0.0.2 copied to clipboard

You can use it to format IBANs

example/example.dart

import 'package:flutter/material.dart';
import 'package:iban_formatter/iban_formatter.dart';

void main() {
  final formatter1 = IbanTextInputFormatter(
    countryCode: CountryCode.TR,
    added: Added.two,
  );

  final formatter2 = IbanTextInputFormatter(
    countryCode: CountryCode.UA,
    grupSize: 2,
    added: Added.zero,
  );

  TextFormField(
    inputFormatters: [formatter1],
  );

  TextFormField(
    inputFormatters: [formatter2],
  );
}
9
likes
140
points
401
downloads

Publisher

unverified uploader

Weekly Downloads

You can use it to format IBANs

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on iban_formatter