AppFlowy/app_flowy/lib/main.dart

15 lines
311 B
Dart
Raw Normal View History

2021-06-19 15:41:19 +00:00
import 'package:app_flowy/startup/startup.dart';
2021-09-06 08:18:34 +00:00
import 'package:app_flowy/welcome/presentation/splash_screen.dart';
2021-06-19 15:41:19 +00:00
import 'package:flutter/material.dart';
2021-09-12 14:19:59 +00:00
class FlowyApp implements EntryPoint {
2021-06-19 15:41:19 +00:00
@override
Widget create() {
2021-09-06 08:18:34 +00:00
return const SplashScreen();
2021-06-19 15:41:19 +00:00
}
}
void main() {
2021-09-12 14:19:59 +00:00
System.run(FlowyApp());
2021-06-19 15:41:19 +00:00
}