bottom nav bar init

This commit is contained in:
Tito Arrigo
2023-09-27 11:21:33 +02:00
committed by Joe Küng
parent 0f9ee28860
commit ce1e5223f0
3 changed files with 62 additions and 121 deletions

14
lib/myApp.dart Normal file
View File

@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
import 'navigation.dart';
class MyApp extends StatelessWidget {
const MyApp({ Key? key }) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'My App',
home: Navigation()
);
}
}