2023-02-14 11:18:53 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2023-02-14 14:02:26 +01:00
|
|
|
import 'package:smoke_cess_app/pages/main_page.dart';
|
2023-02-26 14:10:06 +01:00
|
|
|
import 'package:smoke_cess_app/services/database_service.dart';
|
|
|
|
import 'package:smoke_cess_app/services/notification_service.dart';
|
2023-02-25 08:35:46 +01:00
|
|
|
import 'package:timezone/data/latest.dart' as tz;
|
2023-02-14 11:18:53 +01:00
|
|
|
|
2023-02-24 20:30:28 +01:00
|
|
|
void main() {
|
|
|
|
// to ensure all the widgets are initialized.
|
2023-02-22 01:28:01 +01:00
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
2023-02-25 18:55:03 +01:00
|
|
|
//init database
|
|
|
|
DatabaseService.instance;
|
2023-02-25 08:35:46 +01:00
|
|
|
tz.initializeTimeZones();
|
2023-02-24 20:30:28 +01:00
|
|
|
NotificationService().initNotification();
|
2023-02-22 01:28:01 +01:00
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
2023-02-14 11:18:53 +01:00
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
2023-02-14 12:57:06 +01:00
|
|
|
static const String _title = 'Smoking Cessation App';
|
2023-02-14 11:18:53 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-02-22 01:28:01 +01:00
|
|
|
return const MaterialApp(title: _title, home: MyHomePage());
|
2023-02-14 11:18:53 +01:00
|
|
|
}
|
|
|
|
}
|