flutter_navbar_pro 0.0.1 copy "flutter_navbar_pro: ^0.0.1" to clipboard
flutter_navbar_pro: ^0.0.1 copied to clipboard

This is a amazing nav bar project. You can use this package in your amazing flutter project to make your project beautiful.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Menu Bar Package Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const Scaffold(
        backgroundColor: Colors.green,
        body: Center(
          child: Text(
            'Programming Wormhole',
            style: TextStyle(
                fontWeight: FontWeight.bold, fontSize: 20, color: Colors.white),
          ),
        ),
        bottomNavigationBar: FlutterNavBarPro(

          // Here we just typed our IconData. The package already done all modification for us.
          // So just type the IconData only. (eg: Icons.name)

          iconFirst: Icons.home,
          labelFirst: 'Home',
          iconSecond: Icons.local_offer_outlined,
          labelSecond: 'Offers',
          iconThree: Icons.person,
          labelThree: 'Account',
          iconFour: Icons.menu,
          labelFour: 'More',
          labelMiddle: 'Explore',
        ),
        floatingActionButton: FloatingBarPro(
          middleBGColor: Colors.white,
          imageData: 'assets/images/explore.png',
        ),
        floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
      ),
    );
  }
}
7
likes
140
points
23
downloads

Publisher

verified publishernnvcoders.com

Weekly Downloads

This is a amazing nav bar project. You can use this package in your amazing flutter project to make your project beautiful.

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on flutter_navbar_pro