added cek suara bottom sheet and detail suara bottom sheet

This commit is contained in:
kicap
2023-11-04 05:58:20 +08:00
parent 283f793d29
commit 2f9e6703ef
17 changed files with 664 additions and 219 deletions

View File

@ -7,4 +7,10 @@ class MyFunction {
DateFormat('dd-MM-yyyy | hh.mm.ss a').format(dateTime);
return formattedDateTime;
}
// chnage | to \n in string
String convertDateTime2(String input) {
input = input.replaceAll('| ', '\n');
return input;
}
}