glow_bottom_app_bar 1.4.0 copy "glow_bottom_app_bar: ^1.4.0" to clipboard
glow_bottom_app_bar: ^1.4.0 copied to clipboard

Simple Bottom App Bar with Glowing transition effect to provide a beautiful effect for navigation

Glow Bottom App Bar #

GlowBottomAppBar is a beautiful and easy to use widget which shows a glowing transition from when index changes and is fully customizable.

Show some ♥️ and star the repo to support the project #

Resources:

Usage #

class DemoScreen extends StatelessWidget {
  const DemoScreen({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      bottomNavigationBar: GlowBottomAppBar(
        height: 60,
        onChange: (value) {
          print(value);
        },
        background: Colors.black54,
        iconSize: 35,
        glowColor: Colors.redAccent,
        selectedChildren: const [
          Icon(Icons.ac_unit, color: Colors.redAccent,),
          Icon(Icons.adb_rounded, color: Colors.redAccent,),
          Icon(Icons.account_circle_rounded, color: Colors.redAccent,),
        ],
        children: const [
          Icon(Icons.ac_unit, color: Colors.white,),
          Icon(Icons.adb_rounded, color: Colors.white,),
          Icon(Icons.account_circle_rounded, color: Colors.white,),
        ],
      ),
    );
  }
}

Demo #

Simulator Screen Recording - iPhone 15 Pro Max - 2023-12-20 at 22 12 53

You can customise glow_bottom_app_bar using parameters like:

height width iconSize duration glowColor background shadowColor children selectedChildren initialIndex

1
likes
150
pub points
36%
popularity

Publisher

verified publisheryashashm.dev

Simple Bottom App Bar with Glowing transition effect to provide a beautiful effect for navigation

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on glow_bottom_app_bar