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