18 lines
441 B
Dart
18 lines
441 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'app/routes/app_pages.dart';
|
|
import 'app/data/services/notification_service.dart';
|
|
|
|
void main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await NotificationService.init();
|
|
runApp(
|
|
GetMaterialApp(
|
|
title: "SenPT",
|
|
initialRoute: AppPages.INITIAL,
|
|
getPages: AppPages.routes,
|
|
debugShowCheckedModeBanner: false,
|
|
),
|
|
);
|
|
}
|