Skeleton(
isLoading: controller.isDataLoading.value,
// shimmerGradient: SkeletonTheme,
skeleton: ListView.builder(
physics: NeverScrollableScrollPhysics(),
itemCount: 5,
itemBuilder: (context, index) => Padding(
padding: const EdgeInsets.all(8.0),
child: SkeletonAvatar(
style: SkeletonAvatarStyle(
shape: BoxShape.circle, width: 50, height: 50),
),
),
),
),
in SkeletonAvatar widget is wrapped with container in the given example so it can't get the actual result of circular avatar.
in SkeletonAvatar widget is wrapped with container in the given example so it can't get the actual result of circular avatar.