animated_music_indicator 0.0.1
animated_music_indicator: ^0.0.1 copied to clipboard
Displays an animated equalizer to indicate music is playing.
Display animated bars to indicate music is playing. #

Features #
You can customize by selecting one of three styles: solid, circle & dash.
Animation #
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,
],
);
Installing: #
In your pubspec.yaml:
dependencies:
animated_music_indicator: ^0.0.1
The import statement:
import 'package:animated_music_indicator/animated_music_indicator.dart';