Matthias Nott
2026-03-24 1cbdb03e25eab6fa5046e947292980b6d9acec5e
fix: dismiss keyboard when session drawer opens
1 files modified
changed files
lib/screens/chat_screen.dart patch | view | blame | history
lib/screens/chat_screen.dart
....@@ -1278,6 +1278,9 @@
12781278 ),
12791279 ],
12801280 ),
1281
+ onDrawerChanged: (isOpened) {
1282
+ if (isOpened) FocusManager.instance.primaryFocus?.unfocus();
1283
+ },
12811284 drawer: SessionDrawer(
12821285 sessions: sessions,
12831286 activeSessionId: activeSession?.id,