1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Added bottom navigation to home route

This commit is contained in:
2019-04-23 11:08:38 +02:00
parent 32fa6455f4
commit 07d668eb59
2 changed files with 94 additions and 3 deletions

View File

@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
/// Custom navigation bar item
///
/// @author Pierre HUBERT
class CustomNavigationBarItem extends BottomNavigationBarItem {
const CustomNavigationBarItem({
@required Widget icon,
Widget title,
bool selected,
}) : super(icon: icon, title: title, backgroundColor: Colors.blue,);
}