animated_music_indicator 0.0.6

SDKflutter
Platformandroidioswindowslinuxmacosweb

Displays an animated equalizer to indicate music is playing.

Display an animated equalizer to indicate music is playing.

Alt Text

Features

You can customize by selecting one of three styles: 1. solid, 2. circle & 3. dash.

Alt Text

Animation

Alt Text

You can control the animation by passing a boolean to animate.

Usage

Simple example:


AnimatedMusicIndicator();


Customized example:


              AnimatedMusicIndicator(
                animate: _animate,
                numberOfBars: 8,
                size: 0.50,
                backgroundColor: Colors.white,
                barStyle: BarStyle.dash,
                roundBars: false,
                colors: const [
                  Colors.red,
                  Colors.blue,
                  Colors.green,
                  Colors.black,
                  Colors.greenAccent,
                  Colors.purpleAccent,
                  Colors.lightGreen,
                  Colors.lightBlue,
                ],
              );
              

Alt Text