基础库
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

17 строки
484 B

  1. import 'package:flutter/material.dart';
  2. import 'package:shimmer/shimmer.dart';
  3. class ShimmerUtil {
  4. static Widget getShimmerWidget({double width, double height, double radius = 0}) {
  5. return Shimmer.fromColors(
  6. baseColor: Colors.grey[300],
  7. highlightColor: Colors.grey[100],
  8. child: Container(
  9. width: width,
  10. height: height,
  11. decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.circular(radius)),
  12. ),
  13. );
  14. }
  15. }