Adding Bottom Navigation bar
This commit is contained in:
+11
-4
@@ -1,6 +1,11 @@
|
||||
import 'package:firebase_core/firebase_core.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:le_kiosque_by_gcs/services/auth/main_auth.dart';
|
||||
import 'package:le_kiosque_by_gcs/ui/landing.dart';
|
||||
|
||||
void main() {
|
||||
void main() async {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
await Firebase.initializeApp();
|
||||
runApp(MyApp());
|
||||
}
|
||||
|
||||
@@ -8,12 +13,14 @@ class MyApp extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
showSemanticsDebugger: false,
|
||||
debugShowCheckedModeBanner: false,
|
||||
title: 'Le Kiosque By GC&S',
|
||||
theme: ThemeData(
|
||||
primarySwatch: Colors.white,
|
||||
primarySwatch: Colors.blue,
|
||||
),
|
||||
home: LandingPageView(
|
||||
auth: MainAuth(),
|
||||
),
|
||||
home: Container(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user