import 'package:flutter/material.dart'; import 'package:smoke_cess_app/pages/main_page.dart'; import 'package:smoke_cess_app/service/notification_service.dart'; import 'package:timezone/data/latest.dart' as tz; void main() { // to ensure all the widgets are initialized. WidgetsFlutterBinding.ensureInitialized(); tz.initializeTimeZones(); NotificationService().initNotification(); 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: MyHomePage()); } }