2023-05-17 11:03:33 +08:00
|
|
|
import 'package:appflowy/startup/launch_configuration.dart';
|
|
|
|
|
import 'package:appflowy/startup/startup.dart';
|
2023-09-11 21:32:26 -05:00
|
|
|
import 'package:appflowy/user/presentation/screens/splash_screen.dart';
|
2023-05-17 11:03:33 +08:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
2023-12-26 02:03:42 +08:00
|
|
|
class AppFlowyApplication implements EntryPoint {
|
2023-05-17 11:03:33 +08:00
|
|
|
@override
|
|
|
|
|
Widget create(LaunchConfiguration config) {
|
2024-05-12 22:09:55 +02:00
|
|
|
return SplashScreen(isAnon: config.isAnon);
|
2023-05-17 11:03:33 +08:00
|
|
|
}
|
|
|
|
|
}
|