mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-20 13:59:12 +00:00
11 lines
No EOL
271 B
Dart
11 lines
No EOL
271 B
Dart
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);
|
|
} |