mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
3e17613f54
* chore: save cloud ofnig * chore: fix .a link warnings * chore: add cloud test runner * refactor: test folder * ci: add test * ci: add test * ci: fix * ci: fix
14 lines
386 B
Dart
14 lines
386 B
Dart
import 'package:appflowy/startup/launch_configuration.dart';
|
|
import 'package:appflowy/startup/startup.dart';
|
|
import 'package:appflowy/user/presentation/screens/splash_screen.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class FlowyApp implements EntryPoint {
|
|
@override
|
|
Widget create(LaunchConfiguration config) {
|
|
return SplashScreen(
|
|
isAnon: config.isAnon,
|
|
);
|
|
}
|
|
}
|