-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error Range start 5 is out of text of length 1 #136
Comments
Hi I have the same problem, mi output is file:///Users/kevin/fvm/versions/3.7.7/packages/flutter/lib/src/services/text_input.dart:963:12 when mantissaLength is different from 0 I don´t have the exception but the number gets crazy with the comma in decimal number |
I have this issue also. any update? |
Hello, I have the same issue is there any update about this? |
any updates? @caseyryan |
when will it be fixed? @caseyryan |
I have this issue too. Any updates ? |
Hi guys, |
I encounter this problem like other people. Can you give some priority to the solution? |
I have same problem. Any update? |
Added a quick solution to 2.12.1 |
I have error when using thousandSeparator period and mantissalength 0
inputFormatters: [
CurrencyInputFormatter(
thousandSeparator: ThousandSeparator.Period,
mantissaLength: 0)
],
but is fine when :
inputFormatters: [
CurrencyInputFormatter(
thousandSeparator: ThousandSeparator.Comma,
mantissaLength: 0)
],
or
inputFormatters: [
CurrencyInputFormatter(
thousandSeparator: ThousandSeparator.Period,
mantissaLength: 2)
],
The text was updated successfully, but these errors were encountered: