cpd_2022_zi/lib/pages/interval_page.dart

16 lines
560 B
Dart
Raw Permalink Normal View History

import 'package:flutter/material.dart';
2023-03-03 13:44:17 +01:00
import 'package:smoke_cess_app/services/pages_service.dart';
2023-03-05 18:17:08 +01:00
import 'package:smoke_cess_app/widgets/view_form/workout_form.dart';
import 'package:smoke_cess_app/widgets/view_form/workout_view.dart';
import 'package:smoke_cess_app/widgets/view_form/view_form_page.dart';
2023-03-01 12:34:35 +01:00
class IntervalTimerPage extends StatelessWidget {
const IntervalTimerPage({super.key});
@override
Widget build(BuildContext context) {
2023-03-04 12:14:29 +01:00
return ViewFormPage(
form: WorkoutForm(), view: const WorkoutView(), page: Pages.timer);
}
}