18 lines
424 B
Dart

import 'package:appflowy_editor/appflowy_editor.dart';
import 'package:hotkey_manager/hotkey_manager.dart';
import '../startup.dart';
class HotKeyTask extends LaunchTask {
const HotKeyTask();
@override
Future<void> initialize(LaunchContext context) async {
// the hotkey manager is not supported on mobile
if (PlatformExtension.isMobile) {
return;
}
await hotKeyManager.unregisterAll();
}
}