textfield_pattern_formatter 0.1.3
textfield_pattern_formatter: ^0.1.3 copied to clipboard
A Project for support the issues about Input in Flutter.
Features #
This Package format textinput when you want to add Pattern format money in Device. A few devices have comma instead of dot. But we are fixed it for you.
Getting started #
flutter pub add textfield_pattern_formatter
How to use #
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
TextField(
inputFormatters: [ThousandSeparatorDecimalFormatter()],
)
],
),
Additional information #
You can also use this repo as a template for creating Dart packages, just clone the repo and start hacking :)