字体发微光

290 阅读1分钟
import 'package:shimmer/shimmer.dart';
...
Shimmer.fromColors(
  baseColor: Colors.grey,  // 基础颜色,底色
  highlightColor: Colors.black, // 高亮颜色
  period: Duration(milliseconds: 3000),  // 过渡时间
  child: Text(  // 具体变色内容,可以是其他的widget
    'Shimmer',
    textAlign: TextAlign.center,
    style: TextStyle(
      fontSize: 40.0,
      fontWeight: FontWeight.bold,
    ),
  ),
)

test
test