Skip to content

Commit

Permalink
Fix argentine peso symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
bbedward committed Apr 5, 2021
1 parent 518f0ec commit 0355659
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/model/wallet.dart
Expand Up @@ -86,6 +86,9 @@ class AppWallet {
case "tr_TR":
return NumberFormat.currency(locale: locale, symbol: "₺")
.format(converted.toDouble());
case "es_AR":
return NumberFormat.currency(locale: locale, symbol: "\$")
.format(converted.toDouble());
default:
return NumberFormat.simpleCurrency(locale: locale)
.format(converted.toDouble());
Expand Down

0 comments on commit 0355659

Please sign in to comment.