deluxe_bottom_bar 1.0.1 copy "deluxe_bottom_bar: ^1.0.1" to clipboard
deluxe_bottom_bar: ^1.0.1 copied to clipboard

retracted

Deluxe Bottom Bar is a Flutter package that provides a customizable bottom navigation bar for your Flutter applications.

Deluxe Bottom Bar #

Deluxe Bottom Bar is a Flutter package that provides a customizable bottom navigation bar for your Flutter applications.

Features #

  • Customizable icons and labels
  • Easy to integrate

[Demo GIF]

Getting Started #

To use this package, add deluxe_bottom_bar as a dependency in your pubspec.yaml file.

dependencies:
  deluxe_bottom_bar: ^1.0.0

Usage #

import 'package:flutter/material.dart';
import 'package:deluxe_bottom_bar/deluxe_bottom_bar.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        bottomNavigationBar: DeluxeBottomBar(
        items: const [
          DeluxeBottomBarItem(
            icon: Icons.home,
            tooltip: 'Home',
          ),
          DeluxeBottomBarItem(
            icon: Icons.search,
            tooltip: 'Search',
          ),
          DeluxeBottomBarItem(
            icon: Icons.notifications,
            tooltip: 'Notifications',
          ),
          DeluxeBottomBarItem(
            icon: Icons.settings,
            tooltip: 'Settings',
          ),
        ],
      ),
        body: Center(child: Text('Hello, world!')),
      ),
    );
  }
}

Example #

you can find the example in the Example folder.

License #

This project is licensed under the MIT License - see the LICENSE file for details.

7
likes
0
points
14
downloads

Publisher

verified publisherdmupapp.com

Weekly Downloads

Deluxe Bottom Bar is a Flutter package that provides a customizable bottom navigation bar for your Flutter applications.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on deluxe_bottom_bar