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:
13
lib/ui/tiles/CustomBottomNavigationBarItem.dart
Normal file
13
lib/ui/tiles/CustomBottomNavigationBarItem.dart
Normal 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,);
|
||||
}
|
Reference in New Issue
Block a user