sphere_bottom_navigation_bar 0.0.3 copy "sphere_bottom_navigation_bar: ^0.0.3" to clipboard
sphere_bottom_navigation_bar: ^0.0.3 copied to clipboard

outdated

sphere_bottom_navigation_bar is first sphere shape navigation item design. It's easy and simple to use. You can import the library and use it. It totaly open source you can find out on Github

Sphere Bottom Navigation Bar #

Sphere Bottom Navigation Bar is flutter package, You can create beautiful awesome degined bottom navigation bar with importing this library

Getting Started #

1. Add the dependencies to [pubspec.yaml] #

dependencies:
	sphere_bottom_navigation_bar: ^0.0.3

2. Install it #

You can install packages from the command line:

$ flutter packages get

3. Import package #

import  'package:sphere_bottom_navigation_bar/sphere_bottom_navigation_bar.dart';

4. Example: #

bottomNavigationBar: SphereBottomNavigationBar(  
  defaultSelectedItem: 0,  
  sheetRadius: BorderRadius.only(  
      topLeft: Radius.circular(20), topRight: Radius.circular(20)),  
  onItemPressed: (index) => setState(() {  
        print('Selected item is - $index');  
      }),   
  navigationItems: [  
    BuildNavigationItem(  
      tooltip: 'Home',  
  itemColor: Color(0xFFFFD6B2),  
  icon: Icon(Icons.home),  
  selectedItemColor: Color(0xFFFFD6B2),  
  ),  
  BuildNavigationItem(  
      tooltip: 'Chat',  
  itemColor: Color(0xFFB2F4FF),  
  icon: Icon(Icons.chat),  
  selectedItemColor: Color(0xFFB2F4FF),  
  ),  
  BuildNavigationItem(  
      tooltip: 'Peoples',  
  itemColor: Color(0xFFCDB2FF),  
  icon: Icon(Icons.people),  
  selectedItemColor: Color(0xFFCDB2FF),  
  ),  
  BuildNavigationItem(  
        tooltip: 'Settings',  
  itemColor: Color(0xFFFFB2D9),  
  icon: Icon(Icons.settings),  
  selectedItemColor: Color(0xFFFFB2D9)),  
  ],  
),

Screenshots #

drawing drawing drawing
2
likes
20
pub points
28%
popularity

Publisher

unverified uploader

sphere_bottom_navigation_bar is first sphere shape navigation item design. It's easy and simple to use. You can import the library and use it. It totaly open source you can find out on Github

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on sphere_bottom_navigation_bar