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) {
|
|
|
|
return SplashScreen(
|
2023-11-28 02:54:31 +00:00
|
|
|
isAnon: config.isAnon,
|
2023-05-17 03:03:33 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|