🐛 Fix overflow in content

This commit is contained in:
LittleSheep 2024-09-23 23:20:01 +08:00
parent 0fdb1e4ead
commit 9d5c452eae

View File

@ -209,6 +209,8 @@ class _PostItemState extends State<PostItem> {
onChange: (size) {
setState(() => _contentHeight = size.height);
},
child: SingleChildScrollView(
physics: const NeverScrollableScrollPhysics(),
child: MarkdownTextContent(
parentId: 'p${item.id}-embed',
content: item.body['content'],
@ -219,6 +221,7 @@ class _PostItemState extends State<PostItem> {
).paddingOnly(left: 12, right: 8),
),
),
),
if (_contentHeight >= 320 && !widget.isFullContent)
Align(
alignment: Alignment.bottomCenter,