mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 01:54:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			393 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			393 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| import Cocoa
 | |
| import FlutterMacOS
 | |
| 
 | |
| class MainFlutterWindow: NSWindow {
 | |
|   override func awakeFromNib() {
 | |
|     let flutterViewController = FlutterViewController.init()
 | |
|     let windowFrame = self.frame
 | |
|     self.contentViewController = flutterViewController
 | |
|     self.setFrame(windowFrame, display: true)
 | |
| 
 | |
|     RegisterGeneratedPlugins(registry: flutterViewController)
 | |
| 
 | |
|     super.awakeFromNib()
 | |
|   }
 | |
| }
 | 
