Last updated:
0 purchases
flutter bounce widget
Package for adding bounce animation to your widget
Usage #
BounceWidget(
child: Center(
child: Container(
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 20),
decoration: BoxDecoration(
color: Colors.redAccent,
borderRadius: BorderRadius.circular(20),
),
child: const Text(
'Example',
style: TextStyle(color: Colors.white, fontSize: 25),
),
),
),
onPressed: () {
log('Pressed !)');
},
)
copied to clipboard
Example in action #
Maintainers #
Erik Minasov
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.