mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-01 12:54:44 +00:00
21 lines
440 B
Dart
21 lines
440 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 {
|
|
await super.initialize(context);
|
|
|
|
// the hotkey manager is not supported on mobile
|
|
if (!kDebugMode) {
|
|
return;
|
|
}
|
|
|
|
await FeatureFlag.initialize();
|
|
}
|
|
}
|