Allow users to quickly increment the body weight

This commit is contained in:
Roland Geider
2024-02-17 18:48:48 +01:00
parent 3aa92338fb
commit 9c7b65bc49
10 changed files with 215 additions and 36 deletions

View File

@@ -18,9 +18,9 @@
import 'package:wger/models/body_weight/weight_entry.dart';
final weightEntry1 = WeightEntry(id: 1, weight: 80, date: DateTime(2021, 01, 01));
final weightEntry2 = WeightEntry(id: 2, weight: 81, date: DateTime(2021, 01, 10));
final testWeightEntry1 = WeightEntry(id: 1, weight: 80, date: DateTime(2021, 01, 01));
final testWeightEntry2 = WeightEntry(id: 2, weight: 81, date: DateTime(2021, 01, 10));
List<WeightEntry> getWeightEntries() {
return [weightEntry1, weightEntry2];
return [testWeightEntry1, testWeightEntry2];
}