15 lines
308 B
Dart
Raw Normal View History

2021-06-19 23:41:19 +08:00
import 'package:app_flowy/startup/startup.dart';
import 'package:app_flowy/user/presentation/splash_screen.dart';
2021-06-19 23:41:19 +08:00
import 'package:flutter/material.dart';
2021-09-12 22:19:59 +08:00
class FlowyApp implements EntryPoint {
2021-06-19 23:41:19 +08:00
@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-09-12 22:19:59 +08:00
System.run(FlowyApp());
2021-06-19 23:41:19 +08:00
}