mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-26 02:21:39 +00:00
22 lines
449 B
Dart
22 lines
449 B
Dart
![]() |
import 'package:appflowy/shared/feature_flags.dart';
|
||
|
import 'package:flutter/foundation.dart';
|
||
|
|
||
|
import '../startup.dart';
|
||
|
|
||
|
class FeatureFlagTask extends LaunchTask {
|
||
|
const FeatureFlagTask();
|
||
|
|
||
|
@override
|
||
|
Future<void> initialize(LaunchContext context) async {
|
||
|
// the hotkey manager is not supported on mobile
|
||
|
if (!kDebugMode) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
await FeatureFlag.initialize();
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Future<void> dispose() async {}
|
||
|
}
|