Kirill Bukaev
Kirill Bukaev
For those looking for a solution, a workaround can be found here: https://github.com/leanflutter/window_manager/issues/478#issuecomment-2312763103 In my case, I simply added `exit(0)` when closing the app from the tray icon menu: `windowManager.destroy().then((_)...
It seems that the problem is here: https://github.com/flutter/flutter/blob/14df7be3f9471a97f34e4601fb7710850373ac3b/packages/flutter/lib/src/widgets/app.dart#L1264C5-L1266C81 Only the TAB key is bound: ``` // Keyboard traversal. SingleActivator(LogicalKeyboardKey.tab): NextFocusIntent(), SingleActivator(LogicalKeyboardKey.tab, shift: true): PreviousFocusIntent(), ```