mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
14 lines
403 B
Dart
14 lines
403 B
Dart
import 'package:appflowy/startup/launch_configuration.dart';
|
|
import 'package:appflowy/startup/startup.dart';
|
|
import 'package:appflowy/user/presentation/splash_screen.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class FlowyApp implements EntryPoint {
|
|
@override
|
|
Widget create(LaunchConfiguration config) {
|
|
return SplashScreen(
|
|
autoRegister: config.autoRegistrationSupported,
|
|
);
|
|
}
|
|
}
|