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