基础组件库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

home_banner_sk.dart 602 B

12345678910111213141516171819202122
  1. import 'package:flutter/material.dart';
  2. import 'package:shimmer/shimmer.dart';
  3. class HomeBannerSkeleton extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. return Container(
  7. width: double.infinity,
  8. height: 200,
  9. child: Shimmer.fromColors(
  10. baseColor: Colors.grey[300],
  11. highlightColor: Colors.grey[100],
  12. child: Container(
  13. margin: EdgeInsets.all(10),
  14. decoration: BoxDecoration(
  15. color: Colors.white,
  16. borderRadius: BorderRadius.all(Radius.circular(10))),
  17. ),
  18. ),
  19. );
  20. }
  21. }