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