Add some padding to the chart

This commit is contained in:
Roland Geider
2023-11-08 19:55:39 +01:00
parent 221a1505e7
commit 08cc1a30ea

View File

@@ -141,7 +141,10 @@ class _DayLogWidgetState extends State<DayLogWidget> {
),
)
.toList(),
ExerciseLogChart(base, widget._date),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 15),
child: ExerciseLogChart(base, widget._date),
)
],
);
}).toList()