From 322a93324caf01796f2bef260603495b7f08cf79 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sun, 30 Nov 2025 22:00:23 +0800 Subject: [PATCH] :bug: Fix room content didn't continely load --- lib/screens/chat/room.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/screens/chat/room.dart b/lib/screens/chat/room.dart index 8e744f74..48a42c01 100644 --- a/lib/screens/chat/room.dart +++ b/lib/screens/chat/room.dart @@ -663,9 +663,11 @@ class ChatRoomScreen extends HookConsumerWidget { curve: Curves.easeOut, tween: EdgeInsetsTween( begin: EdgeInsets.only( + top: MediaQuery.of(context).padding.top, bottom: MediaQuery.of(context).padding.bottom + 8 + height, ), end: EdgeInsets.only( + top: MediaQuery.of(context).padding.top, bottom: MediaQuery.of(context).padding.bottom + 8 + height, ), ),