基础库
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

17 satır
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. }