cool_nav 0.0.2 cool_nav: ^0.0.2 copied to clipboard
A collection of really awesome, easy to use Bottom Navigation Bars.
cool_nav #
A collection of really awesome, easy to use BottomNavigationBars
Getting Started #
Add this to your package's pubspec.yaml file:
---
dependencies:
cool_nav: ^0.0.1
Now in your Dart code, you can use:
import 'package:cool_nav/cool_nav.dart';
List of Bottom Navigation Bars: #
Spotlight Bottom Navigation Bar
A easy to use and customizable Bottom Navigation Bar. You can customize the
colors as well provide a custom Gradient for the spotlight.
Code
Scaffold(
// ...
bottomNavigationBar: SpotlightBottomNavigationBar(
items: [
SpotlightBottomNavigationBarItem(icon: Icons.smartphone),
SpotlightBottomNavigationBarItem(icon: Icons.laptop_mac),
SpotlightBottomNavigationBarItem(icon: Icons.desktop_mac),
],
currentIndex: currentIndex,
selectedItemColor: Colors.cyan,
onTap: _onTap,
),
)
More Awesome Navigation Bars will be added in the future.
Examples #
View the example folder to see more examples.