-
Notifications
You must be signed in to change notification settings - Fork 105
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
Update intl #29
Comments
+1 |
3 similar comments
+1 |
+1 |
+1 |
Hi, sorry for leaving this project for a long time. I will update this package next week. |
still don't have the update :) |
waiting for an update |
1 similar comment
waiting for an update |
still don't have the update :) |
Any temporary fix? |
2/02/2021 no updates |
Please update |
my workaround:
|
what if i fork the repo, or someone else, and publish the package with the updates? |
yes please do that. Leave the package name here. |
FYI I implement this functionality, because i just need one currency import 'package:intl/intl.dart';
String formattMoney(double amount, { String symbol = '\$'}) {
return NumberFormat
.currency(symbol: symbol, locale: 'en_ES', decimalDigits: 0)
.format(amount)
.replaceAll(',', '.'); /// format split the number by , i just replaced with .
} |
I found this solution:
|
Please update the version of intl in pub to intl 0.16.1 or higher!
The text was updated successfully, but these errors were encountered: