bottom nav bar init
This commit is contained in:
14
lib/myApp.dart
Normal file
14
lib/myApp.dart
Normal 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()
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user