panti-asuhan-app/lib/services/other_function.dart

19 lines
450 B
Dart
Raw Normal View History

import 'package:intl/intl.dart';
2023-05-18 10:58:21 +00:00
class OtherFunction {
int umur(String tanggalLahir) {
// change tanggalLahir to DateTime
DateTime date = DateTime.parse(tanggalLahir);
// get current date
DateTime now = DateTime.now();
// get difference in year
int year = now.year - date.year;
return year;
}
String commaFormat(int number) {
final formatter = NumberFormat('#,###');
return formatter.format(number);
}
2023-05-18 10:58:21 +00:00
}