mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	* 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,
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |