ss_bottom_navbar 0.0.4 copy "ss_bottom_navbar: ^0.0.4" to clipboard
ss_bottom_navbar: ^0.0.4 copied to clipboard

outdated

A new Flutter package.

ss_bottom_navbar #

Publish to Pub.dev

Flutter modern bottom nav bar. Compatible with Android & iOS. You can customize it freely.

Getting Started #

dependencies:
  ss_bottom_navbar: ^0.0.4
$  flutter pub get
import 'package:ss_bottom_navbar/ss_bottom_navbar.dart';

Example #

var items = [
  SSBottomNavItem(text: 'Home', iconData: Icons.home),
  SSBottomNavItem(text: 'Store', iconData: Icons.store),
  SSBottomNavItem(text: 'Add', iconData: Icons.add, isIconOnly: true),
  SSBottomNavItem(text: 'Explore', iconData: Icons.explore),
  SSBottomNavItem(text: 'Profile', iconData: Icons.person),
];
SSBottomNav(
  items: items,
  color: Colors.black,
  selectedColor: Colors.white,
  unselectedColor: Colors.black,
  onTabSelected: (index) {
	  print(index);
	  setState(() {
		  _index = index;
	 });
  }
),

Customization #

Name Type Description
items List<SSBottomNavItem> list of SSBottomNavItem items
iconSize double size of the icon on items
backgroundColor Color background color of the widget
color Color color of the slider
selectedColor Color items's color when selected
unselectedColor Color items's color when not selected
onTabSelected ValueChanged<int> function that returns the index on tab selected
shadow List<BoxShadow> shadow of the slider

Contributions #

Contributions of any kind are more than welcome! Feel free to fork and improve in any way you want, make a pull request, or open an issue.

29
likes
0
pub points
46%
popularity

Publisher

unverified uploader

A new Flutter package.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, provider

More

Packages that depend on ss_bottom_navbar