shimmer_animation 0.0.4 shimmer_animation: ^0.0.4 copied to clipboard
This is a new shimmer animation widget that can help you bring simple yet beutiful animations to your project with ease.
shimmer_animation #
This is a new shimmer animation widget that can help you bring simple yet beautiful animations to your project with ease.
How to use #
Add shimmer_animation
to pubspec.yaml
of your project:
dependencies:
shimmer_animation: ^0.0.4
Import it in your Dart code:
import 'package:shimmer_animation/shimmer_animation.dart';
Wrap any widget with Shimmer()
widget to apply animaton:
Shimmer(
// color: Colors.white, //Default value
// enabled: true, //Default value
child: Container(
color: Colors.deepPurple,
),
),
A preview of this: