wip: history panes

This commit is contained in:
DenserMeerkat
2024-07-20 22:05:08 +05:30
parent 8eadd7f8fa
commit f8ede1edc8
26 changed files with 473 additions and 71 deletions

View File

@ -13,6 +13,13 @@ String humanizeDate(DateTime? date) {
return DateFormat('MMMM d, yyyy').format(date);
}
String humanizeTime(DateTime? time) {
if (time == null) {
return "";
}
return DateFormat('hh:mm:ss a').format(time);
}
String humanizeDuration(Duration? duration) {
if (duration == null) {
return "";