22 lines
491 B
Dart
22 lines
491 B
Dart
import 'package:firebase_core/firebase_core.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'app/routes/app_pages.dart';
|
|
import 'firebase_options.dart';
|
|
|
|
void main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await Firebase.initializeApp(
|
|
options: DefaultFirebaseOptions.currentPlatform,
|
|
);
|
|
runApp(
|
|
GetMaterialApp(
|
|
title: "Application",
|
|
initialRoute: AppPages.INITIAL,
|
|
getPages: AppPages.routes,
|
|
),
|
|
);
|
|
}
|