mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
42e83b3ce9
* feat: video block support * chore: workaround for ci failing * chore: test * chore: check status * chore: revert apt-get * chore: add mpv * chore: add mpv to appimagebuilder * chore: try again * chore: update after merge * ci: remove workaround for microsoft issue * chore: update editor plugins * feat: add video block option on mobile * fix: final changes for menu * chore: undo cocoapods version
13 lines
315 B
Dart
13 lines
315 B
Dart
import 'package:scaled_app/scaled_app.dart';
|
|
|
|
import 'package:appflowy_editor_plugins/appflowy_editor_plugins.dart';
|
|
|
|
import 'startup/startup.dart';
|
|
|
|
Future<void> main() async {
|
|
ScaledWidgetsFlutterBinding.ensureInitialized(scaleFactor: (_) => 1.0);
|
|
VideoBlockKit.ensureInitialized();
|
|
|
|
await runAppFlowy();
|
|
}
|