Added view more top items page

This commit is contained in:
Juan Gilsanz Polo 2022-09-28 13:59:09 +02:00
parent c81cbaa025
commit 576731b97f
5 changed files with 109 additions and 13 deletions

View file

@ -0,0 +1,11 @@
import 'package:intl/intl.dart';
String intFormat(int value, String locale) {
final f = NumberFormat("#,###", locale);
return f.format(value);
}
String doubleFormat(double value, String locale) {
final f = NumberFormat("#.##", locale);
return f.format(value);
}