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