I haven't seen which describes the answer for my question in stackoverflow.
Here is some workaround
shimmer: ^latestversion
to your pubspec.yml
file.import 'package:shimmer/shimmer.dart';
in your dart file.SvgPicture.network( width: 130.w,
'https://fromnetwork.svg',
placeholderBuilder: (BuildContext context) =>
Container(
child: Shimmer.fromColors(
baseColor:Colors.grey[300]!,
highlightColor:Colors.grey[100]!,
child:
shimmerCard())),
),
Widget shimmerCard() {
return Container(
color: Colors.white,
);
}
this will give shimmer loading on cards till the svg images downloads from network