From 1e8a6dea5b0813d2d191a70a544ba1e933680168 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Tue, 28 Jan 2025 20:39:34 +0800 Subject: [PATCH] :lipstick: Optimize attachment list --- lib/widgets/attachment/attachment_list.dart | 115 ++++++++++---------- 1 file changed, 59 insertions(+), 56 deletions(-) diff --git a/lib/widgets/attachment/attachment_list.dart b/lib/widgets/attachment/attachment_list.dart index 9e8d145..8afd2d2 100644 --- a/lib/widgets/attachment/attachment_list.dart +++ b/lib/widgets/attachment/attachment_list.dart @@ -196,68 +196,71 @@ class _AttachmentListState extends State { ); } - return Container( - constraints: BoxConstraints(maxHeight: constraints.maxHeight), - child: ScrollConfiguration( - behavior: _AttachmentListScrollBehavior(), - child: ListView.separated( - padding: widget.padding, - shrinkWrap: true, - itemCount: widget.data.length, - itemBuilder: (context, idx) { - return Container( - constraints: constraints.copyWith(maxWidth: widget.maxWidth), - child: AspectRatio( - aspectRatio: (widget.data[idx]?.data['ratio'] ?? 1).toDouble(), - child: GestureDetector( - onTap: () { - if (widget.data[idx]?.mediaType != SnMediaType.image) return; - context.pushTransparentRoute( - AttachmentZoomView( - data: widget.data.where((ele) => ele != null && ele.mediaType == SnMediaType.image).cast(), - initialIndex: idx, - heroTags: heroTags, - ), - backgroundColor: Colors.black.withOpacity(0.7), - rootNavigator: true, - ); - }, - child: Stack( - fit: StackFit.expand, - children: [ - Container( - decoration: BoxDecoration( - color: backgroundColor, - border: Border( - top: borderSide, - bottom: borderSide, - ), - borderRadius: AttachmentList.kDefaultRadius, + return AspectRatio( + aspectRatio: widget.data[0]?.data['ratio']?.toDouble() ?? 1, + child: Container( + constraints: BoxConstraints(maxHeight: constraints.maxHeight), + child: ScrollConfiguration( + behavior: _AttachmentListScrollBehavior(), + child: ListView.separated( + padding: widget.padding, + shrinkWrap: true, + itemCount: widget.data.length, + itemBuilder: (context, idx) { + return Container( + constraints: constraints.copyWith(maxWidth: widget.maxWidth), + child: AspectRatio( + aspectRatio: (widget.data[idx]?.data['ratio'] ?? 1).toDouble(), + child: GestureDetector( + onTap: () { + if (widget.data[idx]?.mediaType != SnMediaType.image) return; + context.pushTransparentRoute( + AttachmentZoomView( + data: widget.data.where((ele) => ele != null && ele.mediaType == SnMediaType.image).cast(), + initialIndex: idx, + heroTags: heroTags, ), - child: ClipRRect( - borderRadius: AttachmentList.kDefaultRadius, - child: AttachmentItem( - data: widget.data[idx], - heroTag: heroTags[idx], + backgroundColor: Colors.black.withOpacity(0.7), + rootNavigator: true, + ); + }, + child: Stack( + fit: StackFit.expand, + children: [ + Container( + decoration: BoxDecoration( + color: backgroundColor, + border: Border( + top: borderSide, + bottom: borderSide, + ), + borderRadius: AttachmentList.kDefaultRadius, + ), + child: ClipRRect( + borderRadius: AttachmentList.kDefaultRadius, + child: AttachmentItem( + data: widget.data[idx], + heroTag: heroTags[idx], + ), ), ), - ), - Positioned( - right: 8, - bottom: 8, - child: Chip( - label: Text('${idx + 1}/${widget.data.length}'), + Positioned( + right: 8, + bottom: 8, + child: Chip( + label: Text('${idx + 1}/${widget.data.length}'), + ), ), - ), - ], + ], + ), ), ), - ), - ); - }, - separatorBuilder: (context, index) => const Gap(8), - physics: const BouncingScrollPhysics(), - scrollDirection: Axis.horizontal, + ); + }, + separatorBuilder: (context, index) => const Gap(8), + physics: const BouncingScrollPhysics(), + scrollDirection: Axis.horizontal, + ), ), ), );