mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
f0d5f51703
* fix:windows integration test * fix: load asset * fix: windows test * fix: test * test: refactor the folder test --------- Co-authored-by: vedon <vedon.fu@gmail.com> Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
14 lines
342 B
Dart
14 lines
342 B
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import '../startup.dart';
|
|
|
|
class InitLocalizationTask extends LaunchTask {
|
|
const InitLocalizationTask();
|
|
|
|
@override
|
|
Future<void> initialize(LaunchContext context) async {
|
|
await EasyLocalization.ensureInitialized();
|
|
EasyLocalization.logger.enableBuildModes = [];
|
|
}
|
|
}
|