simple_currency_format 1.0.1
simple_currency_format: ^1.0.1 copied to clipboard
A simple API to format currency values. As pattern, the package use pt_BR locale and R$ symbol.
example/simple_currency_format.dart
import 'package:simple_currency_format/simple_currency_format.dart';
main() {
print(currencyFormat(10));
print(currencyFormat(12.3));
print(currencyFormat(5, locale: 'en_US', symbol: '\$ '));
print(removeZeroDecimal(00500));
}