Vovan 1 tháng trước cách đây
mục cha
commit
70fab16efd
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      lib/src/CashedNetworkImageWidget.dart

+ 2 - 2
lib/src/CashedNetworkImageWidget.dart

@@ -20,7 +20,7 @@ typedef ImageWidgetBuilder =
 class CachedNetworkImageWidget extends StatelessWidget {
   final String imageUrl;
   final int count;
-  final BoxFit fit;
+
   final double? width;
   final double? height;
   final Widget? placeholder;
@@ -35,7 +35,7 @@ class CachedNetworkImageWidget extends StatelessWidget {
     super.key,
     required this.imageUrl,
     required this.cacheKey,
-    required this.fit,
+
     this.count = 10,
     this.height,
     this.width,