From aed3b12b09f8c228516ff23d5d0c6895fc06e01f Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Sun, 22 Dec 2024 20:21:52 +0800 Subject: [PATCH] revert: replyitem: prefixicon Signed-off-by: bggRGjQaUbCoE --- lib/pages/video/detail/reply/widgets/reply_item.dart | 4 ++-- lib/pages/video/detail/reply/widgets/reply_item_grpc.dart | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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, ),