adaptive_bottom_nav 0.0.2
adaptive_bottom_nav: ^0.0.2 copied to clipboard
A beautiful, animated, and customizable bottom navigation bar for Flutter with GetX state management.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add adaptive_bottom_navThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
adaptive_bottom_nav: ^0.0.2Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:adaptive_bottom_nav/adaptive_nav_bar.dart';
import 'package:adaptive_bottom_nav/controllers/navigation_controller.dart';
import 'package:adaptive_bottom_nav/controllers/theme_controller.dart';
import 'package:adaptive_bottom_nav/main.dart';
import 'package:adaptive_bottom_nav/models/nav_item.dart';
import 'package:adaptive_bottom_nav/views/home_page.dart';
import 'package:adaptive_bottom_nav/views/notifications_page.dart';
import 'package:adaptive_bottom_nav/views/profile_page.dart';
import 'package:adaptive_bottom_nav/views/settings_page.dart';
import 'package:adaptive_bottom_nav/widgets/adaptive_nav_bar.dart';