import 'package:flutter/material.dart'; import 'package:smoke_cess_app/screens/stopwatch_timer'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); static const String _title = 'Smoking Cessation App'; @override Widget build(BuildContext context) { return MaterialApp( title: _title, home: Scaffold( appBar: AppBar( title: const Text(_title), ), body: StopWatchTimerPage()), ); } }