Add customize bottom navigation bar

master
Emeline G 2020-08-06 16:26:35 +02:00
parent 8257eadee5
commit 60783d6812
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
import 'package:flutter/material.dart';
class BottomAppBar extends StatefulWidget {
@override
_BottomAppBarState createState() => _BottomAppBarState();
}
class _BottomAppBarState extends State<BottomAppBar> {
@override
Widget build(BuildContext context) {
return BottomNavigationBar(
items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.home),
title: Text('Accueil'),
),
BottomNavigationBarItem(
icon: Icon(Icons.add),
title: Text('Notes'),
),
BottomNavigationBarItem(
icon: Icon(Icons.business),
title: Text('Enseignes'),
),
],
selectedItemColor: Colors.indigo[900],
);
}
}