mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 10:03:18 +00:00 
			
		
		
		
	 3e17613f54
			
		
	
	
		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,
 | |
|     );
 | |
|   }
 | |
| }
 |