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

Hideable Bottom Bar is a Flutter package that provides a customizable bottom bar widget, which can seamlessly hide below the screen for a sleek UI experience.

A Flutter implementation of hideable bottom bar with vertical slide animation.

Features #

Create bottom navigation bar that can animate bellow screen.

Install #

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  hideable_bottom_bar: <latest_version>

In your library add the following import:

import 'package:hideable_bottom_bar/hideable_bottom_bar.dart';

Usage #

Create HideableBottomBar place it in Stack and change bottomPosition to animate widget.

Bottom bar animation

HideableBottomBar(
    selectedIndex: selectedIndex,
    bottomPosition: bottomPosition,
    children: List.generate(
        5,
        (index) => HideableBottomNavigationItem(
            index: index,
            name: _text(index),
            icon: _icon(index),
        ),
    ),
    onSelected: (c) {
        selectedIndex = c.index;
    },
),
6
likes
150
points
47
downloads

Publisher

unverified uploader

Weekly Downloads

Hideable Bottom Bar is a Flutter package that provides a customizable bottom bar widget, which can seamlessly hide below the screen for a sleek UI experience.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on hideable_bottom_bar