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

input: 0
input: 1

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

image

I'm consufesed, don't know if its part of flutter_masked_text or this package.