skeleton_shimmer_loading 0.0.1 skeleton_shimmer_loading: ^0.0.1 copied to clipboard
A Flutter package that provides a customizable shimmer loading effect for your UI components.
Shimmer: #
A package provides an easy way to add skeleton shimmer loading effect in Flutter project
How to use #
import 'package:skeleton_shimmer_loading/skeleton_shimmer_loading.dart';
AppShimmerLoading(
isLoading: true,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Expanded(
child: ShimmerItem(
child: Container(
width: 100,
height: 20,
color: Colors.yellow,
),
),
),
ShimmerItem(
child: Container(
width: 100,
height: 20,
color: Colors.blue,
),
),
Container(
width: 100,
height: 20,
color: Colors.red,
),
],
),
);
Good luck!!!