cash_input_formatter 0.1.3+4
cash_input_formatter: ^0.1.3+4 copied to clipboard
Another cash formatter for TextFormField. Formats input for cash, this does not automatically show the decimal place, only on user input.
cash_input_formatter #
Simple formatter for cash input. Most formatters by default add centers upon input, this formatter will only add decimal places after user inputs a decimal place. To run the example app from the root flutter use 'flutter pub run example'
Usage #
TextFormField(
textAlign: TextAlign.center,
inputFormatters: const [
CashInputFormatter(),
],
),