fix: incorrect time buckets and group by d-m-y

This commit is contained in:
shenlong-tanwen
2025-03-25 23:50:26 +05:30
parent 3a4e9a0129
commit c756b3584b
4 changed files with 29 additions and 140 deletions
@@ -48,3 +48,21 @@ class _MonthHeader extends StatelessWidget {
);
}
}
class _DayHeader extends StatelessWidget {
final String text;
const _DayHeader({required this.text});
@override
Widget build(BuildContext context) {
return _HeaderText(
text: text,
style: context.textTheme.bodyMedium?.copyWith(
color: context.colorScheme.onSurface,
fontSize: 20.0,
fontWeight: FontWeight.w500,
),
);
}
}