Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.05 KB

README.md

File metadata and controls

37 lines (23 loc) · 1.05 KB

text_formatters

A package of pre-built TextInputFormatter objects to use with Flutter's TextField or TextFormField widgets.

Formatters

  • UppercaseInputFormatter, example 'THISISMYTEXT'
  • LowercaseInputFormatter, example 'thisismytext'
  • AlternatingCapsInputFormatter, example 'ThIsIsMyTeXt'

Usage

new TextField(
    inputFormatters: [
        UppercaseInputFormatter(),
    ],
),

Dependencies

This widget set relies on these external third-party components:

Changelog

Please see the Changelog page to know what's recently changed.

Contributions

Feel free to contribute to this project.

If you find a bug or want a feature, but don't know how to fix/implement it, please fill an issue.

If you fixed a bug or implemented a new feature, please send a pull request.