| import 'package:flutter/material.dart'; | |
| import 'page1.dart'; | |
| import 'navbar.dart'; | |
| import 'accueil.dart'; | |
| import 'package:firebase_core/firebase_core.dart'; | |
| import 'firebase_options.dart'; | |
| Future<void> main() async { | |
| WidgetsFlutterBinding.ensureInitialized(); | |
| await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform); | |
| runApp(const MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| const MyApp({super.key}); | |
| //This widget is the root of your application. | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| debugShowCheckedModeBanner: false, | |
| theme: ThemeData(primarySwatch: Colors.blue), | |
| home: const Accueil(), | |
| ); | |
| } | |
| } | |