I would like to register global keyboard shortcuts (the ones that work even if your app is not in focus) within Flutter desktop application. Could not to find any related info on this topic.
Any hints appreciated :)
Flutter doesn't provide any mechanism for registering shortcuts outside the scope of your application. You would need to use platform channels to do the registration with platform-specific code, and then to invoke a method on the Dart side when the shortcut is triggered.