currency_textfield 2.7.2 copy "currency_textfield: ^2.7.2" to clipboard
currency_textfield: ^2.7.2 copied to clipboard

A flutter package that implements a Controller for currency text input.

currency_textfield #

Build Status pub package

A Controller for currency text input

sample

Install #

Follow this guide

Usage #

Import the library

import 'package:currency_textfield/currency_textfield.dart';

Create the Controller

CurrencyTextFieldController controller = CurrencyTextFieldController()

Parameters and getters #

Currency Symbol, Decimal and Thousand separator #

It's possible to customize leftSymbol, decimalSymbol and thousandSymbol:

var controller = CurrencyTextFieldController(leftSymbol: "RR", decimalSymbol: ".", thousandSymbol: ",");

Get double value and get int value #

To get the number value from controller, you can use both the doubleValue or the intValue properties:

//Double value:
final double val = controller.doubleValue;
//Int value:
final int val = controller.intValue;

Initial value #

You can initialize the controller using a int or a double, but not both at the same time. To make this, just use initDoubleValue or initIntValue:

final CurrencyTextFieldController controller2 = CurrencyTextFieldController(initDoubleValue: 10);
final CurrencyTextFieldController controller3 = CurrencyTextFieldController(initIntValue: 1000);

// this will raise an error!
final CurrencyTextFieldController controller4 = CurrencyTextFieldController(initIntValue: 1000,initDoubleValue: 10);
41
likes
0
pub points
89%
popularity

Publisher

unverified uploader

A flutter package that implements a Controller for currency text input.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on currency_textfield