lib/screens/chat_screen.dart
.. .. @@ -879,7 +879,10 @@ 879 879 appBar: AppBar( 880 880 leading: IconButton( 881 881 icon: const Icon(Icons.menu), 882 - onPressed: () => _scaffoldKey.currentState?.openDrawer(),882 + onPressed: () {883 + FocusScope.of(context).unfocus();884 + _scaffoldKey.currentState?.openDrawer();885 + },883 886 ), 884 887 title: Text( 885 888 activeSession?.name ?? 'PAILot',