fix comment

This commit is contained in:
wgh19
2024-05-16 18:01:05 +08:00
parent bfad0dc176
commit dde518ab6b
2 changed files with 3 additions and 1 deletions

View File

@@ -20,4 +20,6 @@ extension Navigation on BuildContext {
Size get size => MediaQuery.of(this).size; Size get size => MediaQuery.of(this).size;
EdgeInsets get padding => MediaQuery.of(this).padding; EdgeInsets get padding => MediaQuery.of(this).padding;
EdgeInsets get viewInsets => MediaQuery.of(this).viewInsets;
} }

View File

@@ -889,7 +889,7 @@ class _CommentsPageState extends MultiPageLoadingState<_CommentsPage, Comment> {
}); });
}, },
).paddingVertical(8).paddingHorizontal(12), ).paddingVertical(8).paddingHorizontal(12),
).paddingBottom(context.padding.bottom), ).paddingBottom(context.padding.bottom + context.viewInsets.bottom),
); );
} }