From 26f0094705e6f6bf755d3733057cf9ff8d2249a5 Mon Sep 17 00:00:00 2001 From: Jganenokk Date: Sat, 4 Jul 2026 14:20:30 +0700 Subject: [PATCH] =?UTF-8?q?=D1=84=D0=B8=D0=BA=D1=81=20=D1=80=D0=B0=D1=81?= =?UTF-8?q?=D0=BF=D0=BE=D0=BB=D0=BE=D0=B6=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B2?= =?UTF-8?q?=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/frontend/screens/chats/chat_screen.dart | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/frontend/screens/chats/chat_screen.dart b/lib/frontend/screens/chats/chat_screen.dart index 8d1340f..710d826 100644 --- a/lib/frontend/screens/chats/chat_screen.dart +++ b/lib/frontend/screens/chats/chat_screen.dart @@ -4534,11 +4534,13 @@ class _ChatScreenState extends State } double _floatingDateTop(BuildContext context) { - if (AppChatChrome.current.value == ChatChromeStyle.color) return 8; final glossy = AppVisualStyle.current.value == VisualStyle.glossy; + if (AppChatChrome.current.value == ChatChromeStyle.color) { + return glossy ? 2 : 4; + } return MediaQuery.paddingOf(context).top + - (glossy ? _glossyHeaderHeight : kToolbarHeight) + - 8; + (glossy ? _glossyHeaderHeight - 16 : kToolbarHeight) + + 4; } Widget _buildLoadMoreIndicator() {