mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-12 11:36:04 +00:00

* fix: align button tooltip * chore: upgrade Flutter to latest beta version * chore: bump version 0.4.0 * chore: minor ui update * chore: update dependencies * chore: upgrade flutter api * chore: use beta channel * chore: disable search bar and optimize toolbar ui * chore: rename extra info keys * feat: highlight text again after changing color * chore: update iOS icon * fix: lose children issues when converting block type * chore: update editor version * chore: update iOS icon and android navigation bar color * fix: docker build issue * fix: android keyboard issues * chore: update icon
21 lines
520 B
Dart
21 lines
520 B
Dart
import 'package:appflowy_editor/appflowy_editor.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
import '../startup.dart';
|
|
|
|
class DebugTask extends LaunchTask {
|
|
const DebugTask();
|
|
|
|
@override
|
|
Future<void> initialize(LaunchContext context) async {
|
|
// the hotkey manager is not supported on mobile
|
|
if (PlatformExtension.isMobile && kDebugMode) {
|
|
SystemChannels.textInput.invokeMethod('TextInput.hide');
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<void> dispose() async {}
|
|
}
|