navigation_dot_bar 0.1.0 copy "navigation_dot_bar: ^0.1.0" to clipboard
navigation_dot_bar: ^0.1.0 copied to clipboard

outdated

A library of Flutter to add a new style in the navigation 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 el paquete desde github agregando lo siguiente a su publicación pubspec.yaml.

  dependencies:
    bubble_tab_indicator: ^0.1.0

Importar la libreria a tu proyecto:

import 'package:navigation_dot_bar/navigation_dot_bar.dart';

Usalo de manera sencilla con BottomNavigationDotBar de la siguiente manera:

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] */ }),
        ...
        ..
        .
      ]
  ),
)
9
likes
0
pub points
65%
popularity

Publisher

unverified uploader

A library of Flutter to add a new style in the navigation bar.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on navigation_dot_bar