spring_view 0.0.8
spring_view: ^0.0.8 copied to clipboard
A Flutter package that provides an animated button with a delightful bounce effect. Easily integrate it into your app for a playful touch.
Spring View #
spring_view: A Flutter package that provides a delightful bounce effect for views, buttons, or widgets. Easily integrate it into your app to add a touch of playfulness!
Features #
Bounce Effect: Easily add a delightful bounce animation to any view, button, or widget in your Flutter app.
Installing #
To use this package, add spring_view
as a dependency in your pubspec.yaml
file.
Usage #
SpringView(
child: Center(
child: Container(
padding: const EdgeInsets.all(8.0),
decoration: BoxDecoration(
color: Colors.cyan,
borderRadius: BorderRadius.circular(8),
),
child: const Text(
"Spring view example"
),
),
),
onPressed: (){}
),