mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 01:54:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			384 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			384 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 AppFlowyApplication implements EntryPoint {
 | |
|   @override
 | |
|   Widget create(LaunchConfiguration config) {
 | |
|     return SplashScreen(isAnon: config.isAnon);
 | |
|   }
 | |
| }
 | 
