Vovan 1 개월 전
부모
커밋
70fab16efd
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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,