diff --git a/lib/screens/reports/components/WeeklyTotals.dart b/lib/screens/reports/components/WeeklyTotals.dart index 4b9d1e3..4b92f3c 100644 --- a/lib/screens/reports/components/WeeklyTotals.dart +++ b/lib/screens/reports/components/WeeklyTotals.dart @@ -167,9 +167,12 @@ class _WeeklyTotalsState extends State { int week = dweek.toInt(); DateTime date = firstDate!.add(Duration(days: week * 7)); - return Text( - dateFormat.format(date).replaceAll(' ', '\n'), - style: theme.textTheme.bodySmall, + return Container( + padding: const EdgeInsets.only(top: 5), + child: Text( + dateFormat.format(date), + style: theme.textTheme.bodySmall, + ), ); }), )),