mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	* feat: customize animation for popover * chore: code refactor * feat: using popover direction calculate the popover animation translate direction * feat: integrate the animated popover in appflowy_popover and popover_action * fix: close popover assertion * chore: format code * chore: code refactor * feat: optimize the popover listener * feat: clear popover when hot-reloading * chore: refactor code * fix: integration test * fix: icon test
		
			
				
	
	
		
			12 lines
		
	
	
		
			215 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			215 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:scaled_app/scaled_app.dart';
 | 
						|
 | 
						|
import 'startup/startup.dart';
 | 
						|
 | 
						|
Future<void> main() async {
 | 
						|
  ScaledWidgetsFlutterBinding.ensureInitialized(
 | 
						|
    scaleFactor: (_) => 1.0,
 | 
						|
  );
 | 
						|
 | 
						|
  await runAppFlowy();
 | 
						|
}
 |