navigation_dot_bar

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

navigation dot bar

Navigation Dot Bar #
Una libreria de Flutter, el cual agrega un BottomNavigationBar con un mejor estilo. Inspirada en la aplicacion "Reflectly"

Como usarlo #
Agregue la dependencia a su proyecto, editando el archivo pubspec.yaml.
dependencies:
navigation_dot_bar: ^0.1.3
copied to clipboard
Importar la libreria a tu proyecto:
import 'package:navigation_dot_bar/navigation_dot_bar.dart';
copied to clipboard
Usalo de manera sencilla con BottomNavigationDotBar:
Scaffold(
appBar: AppBar( title: Text("Demo Bottom Navigation Bar")),
body: Container(),
bottomNavigationBar: BottomNavigationDotBar ( // Usar -> "BottomNavigationDotBar"
items: <BottomNavigationDotBarItem>[
BottomNavigationDotBarItem(icon: Icons.map, onTap: () { /* Cualquier funcion - [abrir nueva venta] */ }),
BottomNavigationDotBarItem(icon: Icons.alarm_add, onTap: () { /* Cualquier funcion - [abrir nueva venta] */ }),
BottomNavigationDotBarItem(icon: Icons.timer, onTap: () { /* Cualquier funcion - [abrir nueva venta] */ }),
...
..
.
]
),
)
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.