You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i input first number into the textFormField the cursor it move to the last like below picture
When i delete all and input again it show zero number above number i input like below picture
I using Cambodia Region in IOS device it show Comma "," in keyboard (type number) and When i select on it the cursor not move to the next of dot (".") -> Example i input 1,234.00
The text was updated successfully, but these errors were encountered:
my code
TextFormField(
inputFormatters: [
CurrencyInputFormatter(
thousandSeparator: ThousandSeparator.Comma,
mantissaLength: 2,
),
],
keyboardType: const TextInputType.numberWithOptions(decimal: true, signed: false),
),
When i input first number into the textFormField the cursor it move to the last like below picture
When i delete all and input again it show zero number above number i input like below picture
I using Cambodia Region in IOS device it show Comma "," in keyboard (type number) and When i select on it the cursor not move to the next of dot (".") -> Example i input 1,234.00
The text was updated successfully, but these errors were encountered: