mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			476 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			476 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:app_flowy/startup/startup.dart';
 | 
						|
import 'package:app_flowy/user/presentation/splash_screen.dart';
 | 
						|
import 'package:easy_localization/easy_localization.dart';
 | 
						|
import 'package:flutter/material.dart';
 | 
						|
 | 
						|
class FlowyApp implements EntryPoint {
 | 
						|
  @override
 | 
						|
  Widget create() {
 | 
						|
    return const SplashScreen();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void main() async {
 | 
						|
  WidgetsFlutterBinding.ensureInitialized();
 | 
						|
  await EasyLocalization.ensureInitialized();
 | 
						|
 | 
						|
  await FlowyRunner.run(FlowyApp());
 | 
						|
}
 |