Adding Bottom Navigation bar

This commit is contained in:
2021-03-18 00:44:33 +02:00
parent caa7f5e2f9
commit 6bf2b46059
19 changed files with 454 additions and 63 deletions
+11 -4
View File
@@ -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(),
);
}
}