AppFlowy/app_flowy/lib/main.dart

15 lines
330 B
Dart
Raw Normal View History

2021-06-19 23:41:19 +08:00
import 'package:app_flowy/startup/startup.dart';
2021-09-06 16:18:34 +08:00
import 'package:app_flowy/welcome/presentation/splash_screen.dart';
2021-06-19 23:41:19 +08:00
import 'package:flutter/material.dart';
class FlowyAppFactory implements AppFactory {
@override
Widget create() {
2021-09-06 16:18:34 +08:00
return const SplashScreen();
2021-06-19 23:41:19 +08:00
}
}
void main() {
2021-07-21 22:41:44 +08:00
Application.run(FlowyAppFactory());
2021-06-19 23:41:19 +08:00
}