From f03b6c605f5a874dc6caa6bbc79a557b06a26b9f Mon Sep 17 00:00:00 2001 From: zhx Date: Mon, 18 May 2026 14:18:14 +0800 Subject: [PATCH] fix: show full profile card preview --- lib/ui_kit/widgets/store/store_bag_page_helpers.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ui_kit/widgets/store/store_bag_page_helpers.dart b/lib/ui_kit/widgets/store/store_bag_page_helpers.dart index 478338e..374a5cb 100644 --- a/lib/ui_kit/widgets/store/store_bag_page_helpers.dart +++ b/lib/ui_kit/widgets/store/store_bag_page_helpers.dart @@ -242,15 +242,15 @@ class SCStoreGridItemCard extends StatelessWidget { headdressCover: res.propsResources?.cover, ); case SCStoreItemPreviewKind.dataCard: - final width = screenSize.width * 0.84; + final width = screenSize.width * 0.94; return ClipRRect( borderRadius: BorderRadius.circular(14.w), child: SizedBox( width: width, - height: width * 0.66, + height: screenSize.height * 0.72, child: SCDataCardResourceView( resource: res.propsResources, - fit: previewFit, + fit: BoxFit.contain, ), ), );