fmassive/lib/timer_page.dart

18 lines
354 B
Dart

import 'package:flutter/material.dart';
class TimerPage extends StatelessWidget {
const TimerPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Timer'),
),
body: const Center(
child: Text('Welcome to the Timer Page!'),
),
);
}
}