From 4b2ac8894d1b10fe4622b72ad7d14c5c06fc4c1e Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Thu, 6 Jun 2024 21:07:11 +0800 Subject: [PATCH] :bug: Fix no safe area --- lib/screens/posts/post_detail.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/screens/posts/post_detail.dart b/lib/screens/posts/post_detail.dart index fca6cbb..2716f64 100644 --- a/lib/screens/posts/post_detail.dart +++ b/lib/screens/posts/post_detail.dart @@ -63,6 +63,9 @@ class _PostDetailScreenState extends State { ).paddingOnly(left: 24, right: 24, top: 16), ), PostReplyList(item: item!), + SliverToBoxAdapter( + child: SizedBox(height: MediaQuery.of(context).padding.bottom), + ), ], ); },