Created
July 1, 2021 05:48
-
-
Save ShaiqAhmedkhan/957f90099841815e016d70785248db3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter_animated_bottom/custom_animated_bottom_bar.dart'; | |
class MyHomePage extends StatefulWidget { | |
@override | |
_MyHomePageState createState() => _MyHomePageState(); | |
} | |
class _MyHomePageState extends State<MyHomePage> { | |
int _currentIndex = 0; | |
final _inactiveColor = Colors.grey; | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
automaticallyImplyLeading: false, | |
title: Text("Custom Animated Bottom Navigation Bar"), | |
backgroundColor: Colors.green[200], | |
), | |
body: getBody(), | |
bottomNavigationBar: _buildBottomBar() | |
); | |
} | |
Widget _buildBottomBar(){ | |
return CustomAnimatedBottomBar( | |
containerHeight: 70, | |
backgroundColor: Colors.black, | |
selectedIndex: _currentIndex, | |
showElevation: true, | |
itemCornerRadius: 24, | |
curve: Curves.easeIn, | |
onItemSelected: (index) => setState(() => _currentIndex = index), | |
items: <BottomNavyBarItem>[ | |
BottomNavyBarItem( | |
icon: Icon(Icons.apps), | |
title: Text('Home'), | |
activeColor: Colors.green, | |
inactiveColor: _inactiveColor, | |
textAlign: TextAlign.center, | |
), | |
BottomNavyBarItem( | |
icon: Icon(Icons.people), | |
title: Text('Users'), | |
activeColor: Colors.purpleAccent, | |
inactiveColor: _inactiveColor, | |
textAlign: TextAlign.center, | |
), | |
BottomNavyBarItem( | |
icon: Icon(Icons.message), | |
title: Text( | |
'Messages ', | |
), | |
activeColor: Colors.pink, | |
inactiveColor: _inactiveColor, | |
textAlign: TextAlign.center, | |
), | |
BottomNavyBarItem( | |
icon: Icon(Icons.settings), | |
title: Text('Settings'), | |
activeColor: Colors.blue, | |
inactiveColor: _inactiveColor, | |
textAlign: TextAlign.center, | |
), | |
], | |
); | |
} | |
Widget getBody() { | |
List<Widget> pages = [ | |
Container( | |
alignment: Alignment.center, | |
child: Text("Home",style: TextStyle(fontSize: 25,fontWeight: FontWeight.bold),), | |
), | |
Container( | |
alignment: Alignment.center, | |
child: Text("Users",style: TextStyle(fontSize: 25,fontWeight: FontWeight.bold),), | |
), | |
Container( | |
alignment: Alignment.center, | |
child: Text("Messages",style: TextStyle(fontSize: 25,fontWeight: FontWeight.bold),), | |
), | |
Container( | |
alignment: Alignment.center, | |
child: Text("Settings",style: TextStyle(fontSize: 25,fontWeight: FontWeight.bold),), | |
), | |
]; | |
return IndexedStack( | |
index: _currentIndex, | |
children: pages, | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment