I am trying to create a video streaming app and want shimmer effect like facebook, any suggestion how to get it?
Asked
Active
Viewed 2,914 times
4
-
I have just written a detailed blog post on how to create a shimmer effect like that. [check it out.](https://yassinebenkhay.com/how-to-create-a-shimmer-loading-effect-in-flutter/) – Yassine BENNKHAY Jul 05 '23 at 16:41
1 Answers
4
shimmer 1.0.1 on https://pub.dev/packages/shimmer, a package provides an easy way to add shimmer effect in Flutter project
import 'package:shimmer/shimmer.dart';
SizedBox(
width: 200.0,
height: 100.0,
child: Shimmer.fromColors(
baseColor: Colors.red,
highlightColor: Colors.yellow,
child: Text(
'Shimmer',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 40.0,
fontWeight:
FontWeight.bold,
),
),
),
);

nitinsingh9x
- 632
- 6
- 12