bhrott / flutter-masked-text

A masked text for Flutter.

Home Page:https://pub.dartlang.org/packages/flutter_masked_text

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

onChanged wrong value

rubgithub opened this issue · comments

onChanged wrong value

typed: 0
typed: 1

TextField(
	onChanged: (value) {
	  print('value: $value');
	},
	controller: MoneyMaskedTextController(
		initialValue: 0.00,
        precision: 2,
	),
....

image