marcusedu / currency_text_input_mask

A Controller with mask for currency text input, basead on the currency_textfield package.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

currency_text_input_mask

A Controller with mask for currency text input, basead on the currency_textfield package.

sample

Usage

Import the library

import 'package:currency_text_input_mask/currency_text_input_mask.dart';

Create the Controller

CurrencyTextInputMaskController controller = CurrencyTextInputMaskController()

Currency Symbol, Decimal and Thousand separator

It's possible to customize leftSymbol, decimal and thousand separators:

var controller = CurrencyTextInputMaskController(leftSymbol: "R\$", decimalSymbol: ".", thousandSymbol: ",");

Get double value

To get the number value from controller, use the doubleValue property:

final double val = controller.doubleValue;

About

A Controller with mask for currency text input, basead on the currency_textfield package.

License:MIT License


Languages

Language:Dart 100.0%