💄 Optimize attachment list

This commit is contained in:
LittleSheep 2025-01-28 20:39:34 +08:00
parent 5c2804cc4d
commit 1e8a6dea5b

View File

@ -196,7 +196,9 @@ class _AttachmentListState extends State<AttachmentList> {
);
}
return Container(
return AspectRatio(
aspectRatio: widget.data[0]?.data['ratio']?.toDouble() ?? 1,
child: Container(
constraints: BoxConstraints(maxHeight: constraints.maxHeight),
child: ScrollConfiguration(
behavior: _AttachmentListScrollBehavior(),
@ -260,6 +262,7 @@ class _AttachmentListState extends State<AttachmentList> {
scrollDirection: Axis.horizontal,
),
),
),
);
},
);