如何在Flutter中制作一个像下图那样的自定义圆形进度指示器?
您可以通过以下方式实现这一点 Shimmer
将Shimmer包添加到你的项目中,并像这样使用。
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,
),
),
),
);