use correct workout times
parent
b337c8d25c
commit
4764aa40f0
|
@ -100,25 +100,25 @@ class WorkoutProvider extends ChangeNotifier {
|
||||||
Map<WorkoutPhases, Map<String, dynamic>> _workoutPhaseSettings = {
|
Map<WorkoutPhases, Map<String, dynamic>> _workoutPhaseSettings = {
|
||||||
WorkoutPhases.warmUp: {
|
WorkoutPhases.warmUp: {
|
||||||
'title': 'Warm Up',
|
'title': 'Warm Up',
|
||||||
'duration': const Duration(seconds: 5),
|
'duration': const Duration(minutes: 5),
|
||||||
'source': AssetSource('warmUp.mp3'),
|
'source': AssetSource('warmUp.mp3'),
|
||||||
'color': Colors.green
|
'color': Colors.green
|
||||||
},
|
},
|
||||||
WorkoutPhases.highIntensity: {
|
WorkoutPhases.highIntensity: {
|
||||||
'title': 'High Intensity',
|
'title': 'High Intensity',
|
||||||
'duration': const Duration(seconds: 4),
|
'duration': const Duration(minutes: 4),
|
||||||
'source': AssetSource('workout.mp3'),
|
'source': AssetSource('workout.mp3'),
|
||||||
'color': Colors.red
|
'color': Colors.red
|
||||||
},
|
},
|
||||||
WorkoutPhases.lowIntensity: {
|
WorkoutPhases.lowIntensity: {
|
||||||
'title': 'Low Intensity',
|
'title': 'Low Intensity',
|
||||||
'duration': const Duration(seconds: 3),
|
'duration': const Duration(minutes: 3),
|
||||||
'source': AssetSource('workout.mp3'),
|
'source': AssetSource('workout.mp3'),
|
||||||
'color': Colors.orange
|
'color': Colors.orange
|
||||||
},
|
},
|
||||||
WorkoutPhases.coolDown: {
|
WorkoutPhases.coolDown: {
|
||||||
'title': 'Cool Down',
|
'title': 'Cool Down',
|
||||||
'duration': const Duration(seconds: 5),
|
'duration': const Duration(minutes: 5),
|
||||||
'source': AssetSource('cool_down.mp3'),
|
'source': AssetSource('cool_down.mp3'),
|
||||||
'color': Colors.blue
|
'color': Colors.blue
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue