bdnavs 0.0.5 copy "bdnavs: ^0.0.5" to clipboard
bdnavs: ^0.0.5 copied to clipboard

BDNavs give you awesome bottomnavbar. it is animated navbar.

example/lib/main.dart

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


Future<void> main() async {
  runApp(
    new MaterialApp(
      home: Home2(),
    ),
  );
}

class Home2 extends StatefulWidget {
  @override
  State<StatefulWidget> createState() => _HomePageState2();
}

class _HomePageState2 extends State<Home2> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    final heights = MediaQuery.of(context).size.height;
    final widths = MediaQuery.of(context).size.width;
    return MaterialApp(
      home: Scaffold(
          body: NavBs4Down(
        isDown: false,
        index: 5,
        iconColors: Colors.blue,
        iconDisableColors: Colors.blue,
        iconBackColors: Colors.red,
        navBackColors: Colors.green,
        icons: <IconData>[
          Icons.home,
          Icons.search,
          Icons.airplanemode_active,
          Icons.favorite,
          Icons.add
        ], //
        app: [
          Home2(),
          //change as you want
          Home2(),
          //change as you want
          Home2(),
          //change as you want
          Home2(),
          //change as you want
          Home2(),
          //change as you want
        ],
      )),
    );
  }
}
3
likes
40
pub points
0%
popularity

Publisher

unverified uploader

BDNavs give you awesome bottomnavbar. it is animated navbar.

Homepage

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on bdnavs