基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
772 B

  1. import 'package:flutter/material.dart';
  2. import 'package:zhiying_comm/util/shimmer_util.dart';
  3. class SearchTabSkeleton extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. return Container(
  7. width: double.infinity,
  8. margin: const EdgeInsets.only(left: 12.5, right: 12.5, top: 20),
  9. child: Row(
  10. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  11. children: <Widget>[
  12. ShimmerUtil.getShimmerWidget(width: 45, height: 15),
  13. ShimmerUtil.getShimmerWidget(width: 45, height: 15),
  14. ShimmerUtil.getShimmerWidget(width: 45, height: 15),
  15. ShimmerUtil.getShimmerWidget(width: 45, height: 15),
  16. ShimmerUtil.getShimmerWidget(width: 45, height: 15),
  17. ],
  18. ),
  19. );
  20. }
  21. }