mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-11-05 12:28:45 +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());
|
||
|
|
}
|