fmassive/lib/timer_page.dart

18 lines
354 B
Dart
Raw Permalink Normal View History

2023-04-06 23:50:02 +00:00
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!'),
),
);
}
}