From 94ee00cc91c87d8058a414ae394c605065e2c733 Mon Sep 17 00:00:00 2001 From: ramadhan sjamsani Date: Fri, 10 Apr 2026 10:42:01 +0800 Subject: [PATCH] Enable back button on client_app chat screen for iOS automaticallyImplyLeading was set to false, hiding the back arrow. iOS has no physical back button so this is needed for navigation. Co-Authored-By: Claude Opus 4.6 (1M context) --- client_app/lib/features/chat/screens/chat_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_app/lib/features/chat/screens/chat_screen.dart b/client_app/lib/features/chat/screens/chat_screen.dart index f7e6790..416a630 100644 --- a/client_app/lib/features/chat/screens/chat_screen.dart +++ b/client_app/lib/features/chat/screens/chat_screen.dart @@ -107,7 +107,7 @@ class _ChatScreenState extends ConsumerState { return Scaffold( appBar: AppBar( title: Text(widget.mitraName), - automaticallyImplyLeading: false, + automaticallyImplyLeading: true, actions: [ if (chatState is ChatConnectedData && chatState.remainingSeconds != null) Padding(