2023-03-03 13:44:17 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'mute_button.dart';
|
|
|
|
import 'workout_timer_widget.dart';
|
|
|
|
|
|
|
|
class WorkoutForm extends StatelessWidget {
|
|
|
|
const WorkoutForm({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-03-03 15:00:48 +01:00
|
|
|
return Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: const [
|
|
|
|
Align(
|
|
|
|
alignment: Alignment.topLeft,
|
|
|
|
child: MuteButton(),
|
|
|
|
),
|
|
|
|
WorkoutTimerWidget()
|
2023-03-03 13:44:17 +01:00
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|