breathing_collection 1.0.0+3 breathing_collection: ^1.0.0+3 copied to clipboard
A collection of Flutter widgets with breathing animation. More widgets will be added.
Breathing Collection #
A collection of Flutter widgets with breathing animation.
List of widgets #
- BreathingGlowingButton
- BreathingBackground
- More coming
Installing #
Add this to your package's pubspec.yaml file and run flutter pub get
:
dependencies:
breathing_collection: ^1.0.0+3
Now in your Dart code, you can use:
import 'package:breathing_collection/breathing_collection.dart';
Examples #
BreathingGlowingButton
BreathingGlowingButton(
height: 60.0,
width: 60.0,
buttonBackgroundColor = Color(0xFF373A49);
glowColor = Color(0xFF777AF9);
icon = Icons.mic;
iconColor = Colors.white;
onTap = () {
// do something
};
)
BreathingBackground
BreathingBackground(
initialMainColor = Color(0xFFDAD9E7),
transformedMainColor = Color(0xFFB1B1BD),
initialSecondaryColor = Color(0xFFB1B1BD),
transformedSecondaryColor = Colors.white,
begin = Alignment.topCenter,
end = Alignment.bottomCenter,
duration = Duration(seconds: 3),
)