A package of pre-built TextInputFormatter
objects to use with Flutter's TextField
or TextFormField
widgets.
UppercaseInputFormatter
, example 'THISISMYTEXT'LowercaseInputFormatter
, example 'thisismytext'AlternatingCapsInputFormatter
, example 'ThIsIsMyTeXt'
new TextField(
inputFormatters: [
UppercaseInputFormatter(),
],
),
This widget set relies on these external third-party components:
Please see the Changelog page to know what's recently changed.
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.