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

outdated

Animated button bars which can be used as bottom navigation bars as well as tab bar.

animated_button_bars #

A new Flutter project.

Getting Started #

To use this package, add animated_button_bars as a dependency in your pubspec.yaml file.

See example for all animation wrappers and animated text bottom bar

Add dependency #

dependencies:
  animated_button_bars: ^0.0.1

Import #

import 'package:animated_button_bars/animated_button_bars.dart';

Usage: AnimatedTextBar #

Single item in the list of Bar Items #

BarItem(
    label: "Yellow",
    iconData: Icons.skip_previous,
    activeColor: Colors.yellow,
),

AnimatedTextBar itself #

AnimatedTextBar(
    borderRadius: BorderRadius.circular(30),
    margin: EdgeInsets.all(20),
    onTap: (index) {
        setState(() {
            _currentIndex = index;
        });
    },
    items: _barItems,
),

Many more animated button bars will be added soon..!

Made with ❤️ by Jagrit

4
likes
0
pub points
45%
popularity

Publisher

unverified uploader

Animated button bars which can be used as bottom navigation bars as well as tab bar.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on animated_button_bars