mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 10:03:18 +00:00 
			
		
		
		
	 c1a8d89938
			
		
	
	
		c1a8d89938
		
			
		
	
	
	
	
		
			
			* feat: support lock button in view more actions * feat: add lock page on mobile * feat: disable actions in locked page * feat: disable more actions in locked page * feat: support locked grid on mobile * feat: support locked board/calendar on mobile * fix: exclude lock page button from AI Chat
		
			
				
	
	
		
			14 lines
		
	
	
		
			391 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			391 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| import UIKit
 | |
| import Flutter
 | |
| 
 | |
| @main
 | |
| @objc class AppDelegate: FlutterAppDelegate {
 | |
|   override func application(
 | |
|     _ application: UIApplication,
 | |
|     didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
 | |
|   ) -> Bool {
 | |
|     GeneratedPluginRegistrant.register(with: self)
 | |
|     return super.application(application, didFinishLaunchingWithOptions: launchOptions)
 | |
|   }
 | |
| }
 |