WT 1.1.25+2 training log search

This commit is contained in:
bossanyit
2021-11-28 12:08:03 +01:00
parent 4d22d98ae0
commit 72ae1c8f8c
10 changed files with 344 additions and 90 deletions
+5 -2
View File
@@ -2,14 +2,16 @@ import 'package:aitrainer_app/model/exercise.dart';
import 'package:flutter/material.dart';
class TrainingResult {
final Exercise exercise;
final Exercise? exercise;
final String eventName;
final DateTime from;
final DateTime to;
final Color background;
Color background;
final bool isAllDay;
final bool isTest;
final bool isExercise;
String? summary;
bool search = false;
TrainingResult({
required this.eventName,
@@ -19,6 +21,7 @@ class TrainingResult {
required this.isAllDay,
required this.exercise,
required this.isTest,
required this.isExercise,
this.summary,
});
}