A quick and powerful Flutter layout with a bottom navbar

  Button, Navigation, Navigation bar
bottom_nav_layout

  

Demo

stack

What is bottom_nav_layout?

It is a quick flutter app layout for building an app with a bottom nav bar. You can get an app with fluent behavior running in 15 lines of code.

Why bottom_nav_layout?

  • Eliminates all boilerplate code for bottom nav bar coordination.
  • Offers additional common features.
    • Page state preservation
    • Lazy page loading
    • Page transition animations
    • In-page navigation
    • Back button navigation for Android
  • Works with any bottom bar you want. Use the material or cupertino bottom bar, grab one from pub.dev or use your own.
  • You can customize or turn of any feature.

Table of Content

  • Usage
  • Page State Preservation
  • Lazy Page Loading
  • Page Back Stack
  • Page Transition Animation
  • In-Page Navigation
  • Different Bottom Bars
  • Improvements
  • Community

Usage

Installation

Add the following to your pubspec.yaml file.

dependencies:
  bottom_nav_layout: latest_version

Quick Start Example

import 'package:bottom_nav_layout/bottom_nav_layout.dart';

void main() => runApp(MaterialApp(
      home: BottomNavLayout(
        // The app's destinations
        pages: [
          (_) => Center(child: Text("Welcome to bottom_nav_layout")),
          (_) => SliderPage(),
          (_) => Center(child: TextField(decoration: InputDecoration(hintText: 'Go..'))),
        ],
        bottomNavigationBar: (currentIndex, onTap) => BottomNavigationBar(
          currentIndex: currentIndex,
          onTap: (index) => onTap(index),
          items: [
            BottomNavigationBarItem(icon: Icon(Icons.home), label: 'Home'),
            BottomNavigationBarItem(icon: Icon(Icons.linear_scale), label: 'Slider'),
            BottomNavigationBarItem(icon: Icon(Icons.search), label: 'Search'),
          ],
        ),
      ),
    ));

Done. You have a complete, working application.

SliderPage code

Parameters

NameDescriptionDefault
pagesThe app’s destinations.N/A
bottomNavigationBarThe bottom navbar of the layout.N/A
savePageStateWhen false, the pages are reinitialized every time they are navigated. (Material behavior). When true, the pages are initialized once and hidden/shown on navigation. (Cupertino behavior)false
lazyLoadPagesWhen false, pages are created in the beginning. When true, pages are created when they are navigated for the first time.false
pageStackNavigation stack that remembers pages visited. Enhances back button management on Android.ReorderToFrontPageStack for Android, NoPageStack for iOS
extendBodyPassed to Scaffold.extendBody.false
resizeToAvoidBottomInsetPassed to Scaffold.resizeToAvoidBottomInset.true
pageTransitionDataAnimation configuration for page transitions.null

Inner Widget Tree

inner_widget_tree
image

Page State Preservation

The state changes you made in a page such as scroll amount, sub-navigation, form inputs etc. are preserved. You can enable it as per Cupertino Design Guidelines or disable it as per Material Design Guidelines

savePageState: true, // Default is false

Lazy Page Loading

The layout offers the option to lazily create the pages using the passed in page builders. When lazyLoadPages is set to true, the pages are not created until they are navigated to for the first time. This is useful when a non-initial page;

  • Has a load animation.
  • Runs a heavy process that is not needed until the page is opened.
lazyLoadPages: true, // Default is false

Page Back Stack

DocumentationExample
documentationexample

The layout remembers the order of pages navigated and when back button is pressed, navigates back to the previously navigated page.

There are many useful page back stack behaviors implemented such as reorder-to-front and replace-except-first. You can also implement your own.

You also specify the initialPage inside PageStack.

// Default is ReorderToFrontPageStack for Android and NoPageStack for iOS.
pageStack: ReorderToFrontPageStack(initialPage: 0),

Page Transition Animation

DocumentationExample
example

You can set an transition animation between pages. Create your own AnimationBuilder or use one of the built in ones.

These animation work with both bottom navbar and Android back button.

// Default is null.
pageTransitionData: PageTransitionData(
  builder: PrebuiltAnimationBuilderBuilders.zoomInAndFadeOut,
  duration: 150,
  direction: AnimationDirection.inAndOut,
),

In-Page Navigation

DocumentationExample
documentationexample

The layout maintains a flat navigation pattern.

Figure: Flat Navigation
Figure: Flat Navigation

Benefits

  1. Navigator per page is trivial to set up.
  2. You only need to push pages you need. Pops are handled by the layout.
  3. Android back button navigates both in-page and among pages.
  4. Bottom bar pops all in-page stack when the current bar item is reselected.
  5. If you put an app bar to your page, it will show the up button correctly.

To do this, the page should have a Navigator widget that use the passed in GlobalKey as its key.

pages: [
  (navKey) => Navigator(
        key: navKey,
        initialRoute: "/",
        onGenerateRoute: (routeSettings) => MaterialPageRoute(
          builder: (context) {
            if (routeSettings.name == "/")
              return OverviewPage();
            else if (routeSettings.name == "/details")
              return DetailsPage();
            else
              return Center(child: Text("Unknown route."));
          },
        ),
      ),
  (_) => SliderPage(),
  (_) => SliderPage(),
],

Different Bottom Bars

DocumentationExample
documentationexample

So far, we only worked on Material bottom nav bar. The layout supports any bottom bar.

Example usage of flutter_snake_navigationbar:

bottomNavigationBar: (currentIndex, onTap) => SnakeNavigationBar.color(
  currentIndex: currentIndex,
  onTap: (index) => onTap(index),
  items: [
    BottomNavigationBarItem(icon: Icon(Icons.home), label: 'Home'),
    BottomNavigationBarItem(icon: Icon(Icons.linear_scale), label: 'Slider'),
    BottomNavigationBarItem(icon: Icon(Icons.search), label: 'Search'),
  ],
),

Improvements

  • Tell me if you want to see a feature your app has/needs in this package. I will do my best to integrate it.
  • I am also considering to make a drawer_nav_layout package. If you are interested, let me know!

Community

Any feedback is appreciated. rocketrocket

I love talking about code. Find me on discord at ViraL#2868

If you like this work, please consider +1 the package and star the repo. It is appreciated.

If you have queries, feel free to create an issue.

Download Flutter layout with a bottom navbar package source code on GitHub

https://github.com/m-azyoksul/bottom_nav_layout

Check out implementation guide on pub.dev

https://pub.dev/packages/bottom_nav_layout