mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-03 19:43:52 +00:00 
			
		
		
		
	* test: add anon user test * chore: add to runner * test: fix * test: fix * test: add tests * chore: add test * chore: fix warn * chore: fix warn * fix: build * fix: test * chore: rename * chore: fix test * chore: fix test * chore: fix test * chore: disable test
		
			
				
	
	
		
			14 lines
		
	
	
		
			397 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			397 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,
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |