I want to add a shimmer effect on my app while its loading. how to implement it on flutter for both Android & IOS?
CodePudding user response:
You can use the Shimmer plugin which is available on the pub dev website.
CodePudding user response:
https://pub.dev/packages/shimmer
Shimmer.fromColors(
baseColor: Colors.grey,
highlightColor: Colors.white,
period: const Duration(milliseconds: 2500),
child: Text("HELLO"),
),