pattern_formatter 4.0.0 copy "pattern_formatter: ^4.0.0" to clipboard
pattern_formatter: ^4.0.0 copied to clipboard

A Flutter package provides some implementations of TextInputFormatter that format input with pre-defined patterns

PatternFormatter #

pub package codecov

A Flutter package provides some implementations of TextInputFormatter that format input with pre-defined patterns

How to use #

import 'package:pattern_formatter/pattern_formatter.dart';
copied to clipboard

Thousands grouping #

  • Integer number:

TextField(
  keyboardType: TextInputType.number,
  inputFormatters: [
    ThousandsFormatter()
  ],
)
copied to clipboard
  • Decimal number:

TextField(
  keyboardType: TextInputType.number,
  inputFormatters: [
    ThousandsFormatter(allowFraction: true)
  ],
)
copied to clipboard

Card number grouping #

TextField(
  keyboardType: TextInputType.number,
  inputFormatters: [
    CreditCardFormatter(),
  ],
)
copied to clipboard

Date format #

TextField(
  keyboardType: TextInputType.number,
  inputFormatters: [
    DateInputFormatter(),
  ],
)
copied to clipboard
296
likes
140
points
20.1k
downloads

Publisher

verified publisherhunghd.dev

Weekly Downloads

2024.09.19 - 2025.04.03

A Flutter package provides some implementations of TextInputFormatter that format input with pre-defined patterns

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, intl

More

Packages that depend on pattern_formatter