Fix floating number, menu font size

This commit is contained in:
Bossanyi Tibor
2020-07-08 09:34:34 +02:00
parent 9e6b1f2703
commit eac21c5241
10 changed files with 49 additions and 35 deletions
+2 -3
View File
@@ -1,4 +1,3 @@
import 'dart:collection';
import 'dart:ui';
class WorkoutTree {
@@ -9,8 +8,8 @@ class WorkoutTree {
Color color;
double fontSize;
bool child;
int exercise_type_id;
int exerciseTypeId;
WorkoutTree(this.id, this.parent, this.name, this.imageName, this.color, this.fontSize, this.child, this.exercise_type_id);
WorkoutTree(this.id, this.parent, this.name, this.imageName, this.color, this.fontSize, this.child, this.exerciseTypeId);
}