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