easy_shimmer 0.0.7 easy_shimmer: ^0.0.7 copied to clipboard
A flutter package to add adaptive shimmer in any widget for Android and IOS
Features #
A flutter package easy_shimmer is helps to add adaptive shimmer in any widget for Android and IOS.
Getting started #
easy_shimmer is basically an improved shimmer, so you can just use as an extension to any flutter widget that you want.
Usage #
Column(
children: [
const Text('Easy shimmer with Text widget').easyShimmer(
baseColor: Colors.white38,
highlightColor: Colors.white70,
),
const SizedBox(
height: 40,
),
const SizedBox(
height: 200,
width: 200,
).easyShimmer(
baseColor: Colors.white38,
highlightColor: Colors.white70,
),
const SizedBox(
height: 40,
),
],
)