From 86892d21c80da70979831b657d13c2a43d11253a Mon Sep 17 00:00:00 2001 From: cogwheel0 <172976095+cogwheel0@users.noreply.github.com> Date: Fri, 10 Oct 2025 19:01:16 +0530 Subject: [PATCH] fix: adjust content scale and blur settings in chat page for improved visual clarity - Set contentScaleDelta and contentBlurSigma to 0.0 in the chat page, ensuring a clearer visual presentation without unintended scaling or blurring effects. - This change enhances the user experience by providing a more focused and readable chat interface. --- lib/features/chat/views/chat_page.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/features/chat/views/chat_page.dart b/lib/features/chat/views/chat_page.dart index 9ec605c..f70db32 100644 --- a/lib/features/chat/views/chat_page.dart +++ b/lib/features/chat/views/chat_page.dart @@ -1206,6 +1206,8 @@ class _ChatPageState extends ConsumerState { edgeFraction: edgeFraction, settleFraction: 0.06, // even gentler settle for instant open feel scrimColor: scrim, + contentScaleDelta: 0.0, + contentBlurSigma: 0.0, onOpenStart: () { // Suppress composer auto-focus once we unfocus for the drawer try {