File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -38,14 +38,11 @@ class NutritionalPlansList extends StatelessWidget {
38
38
39
39
final entriesAll = _provider.items.map ((e) => MeasurementChartEntry (e.weight, e.date)).toList ();
40
40
final entries7dAvg = moving7dAverage (entriesAll);
41
- print ('start: $startDate ' );
42
- print ('end: $endDate ' );
43
41
// Filter weight entries within the plan period
44
42
final DateTime planEndDate = endDate ?? DateTime .now ();
45
43
final List <MeasurementChartEntry > entriesInPeriod = entries7dAvg
46
44
.where ((entry) => entry.date.isAfter (startDate) && entry.date.isBefore (planEndDate))
47
45
.toList ();
48
- print ('entriesInPeriod: ${entriesInPeriod .length }' );
49
46
if (entriesInPeriod.length < 2 ) {
50
47
return const SizedBox .shrink ();
51
48
}
You can’t perform that action at this time.
0 commit comments