Search code examples
flutterdart

Flutter: how to get currency symbol from currency code


From language code it's easy:

var format = NumberFormat.simpleCurrency(locale: "es");
print(format.currencySymbol);

But the only thing I have is EUR for euro, so the currency code


Solution

  • var format = NumberFormat.simpleCurrency(locale: _language); // doesn't really matter what language you pass
    print(format.simpleCurrencySymbol("EUR"));