We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a85632 commit 249bb2aCopy full SHA for 249bb2a
1 file changed
kitchenowl/lib/pages/household_page/planner.dart
@@ -212,8 +212,15 @@ class _PlannerPageState extends State<PlannerPage> {
212
);
213
}
214
215
+ DateTime? _previousCookingDate;
216
for (final cookingDate
217
in state.getUniqueCookingDays()) {
218
+ if (_previousCookingDate != null) {
219
+ if (daysBetween(_previousCookingDate, cookingDate) > 1) {
220
+ children.add(const SizedBox(width: 15.0));
221
+ }
222
223
+ _previousCookingDate = cookingDate;
224
for (final plan
225
in state.getPlannedOfDate(cookingDate)) {
226
children.add(
0 commit comments