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

Bottom App Bar with Glowing transition

Glow Bottom App Bar #

Beautiful and easy to use glowing transition bottom app bar which s 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);
        },
        // shadowColor: AppColors.white.withOpacity(0.15),
        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 using parameters like:

  • height
  • width
  • iconSize
  • duration
  • glowColor
  • background
  • shadowColor
3
likes
0
points
74
downloads

Publisher

verified publisheryashashm.dev

Weekly Downloads

Bottom App Bar with Glowing transition

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on glow_bottom_app_bar