问题
I am trying to create a video streaming app and want shimmer effect like facebook, any suggestion how to get it?
回答1:
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,
),
),
),
);
来源:https://stackoverflow.com/questions/58357958/how-to-get-shimmer-effect-like-facebook-in-flutter