diff --git a/lib/pages/video/detail/reply/widgets/reply_item.dart b/lib/pages/video/detail/reply/widgets/reply_item.dart index 32fbcf940..541cfb54e 100644 --- a/lib/pages/video/detail/reply/widgets/reply_item.dart +++ b/lib/pages/video/detail/reply/widgets/reply_item.dart @@ -760,8 +760,8 @@ class ReplyItem extends StatelessWidget { [ if (content.jumpUrl[matchStr]?['prefix_icon'] != null) ...[ WidgetSpan( - child: CachedNetworkImage( - imageUrl: content.jumpUrl[matchStr]['prefix_icon'], + child: Image.network( + content.jumpUrl[matchStr]['prefix_icon'], height: 19, color: Theme.of(context).colorScheme.primary, ), diff --git a/lib/pages/video/detail/reply/widgets/reply_item_grpc.dart b/lib/pages/video/detail/reply/widgets/reply_item_grpc.dart index 19d0a5385..89067bbe8 100644 --- a/lib/pages/video/detail/reply/widgets/reply_item_grpc.dart +++ b/lib/pages/video/detail/reply/widgets/reply_item_grpc.dart @@ -784,8 +784,8 @@ class ReplyItemGrpc extends StatelessWidget { [ if (content.url[matchStr]?.hasPrefixIcon() == true) ...[ WidgetSpan( - child: CachedNetworkImage( - imageUrl: content.url[matchStr]!.prefixIcon, + child: Image.network( + content.url[matchStr]!.prefixIcon, height: 19, color: Theme.of(context).colorScheme.primary, ),