mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
15 lines
311 B
Dart
15 lines
311 B
Dart
import 'package:app_flowy/startup/startup.dart';
|
|
import 'package:app_flowy/welcome/presentation/splash_screen.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class FlowyApp implements EntryPoint {
|
|
@override
|
|
Widget create() {
|
|
return const SplashScreen();
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
System.run(FlowyApp());
|
|
}
|