2024-04-12 16:38:20 +00:00
|
|
|
import Cocoa
|
|
|
|
import FlutterMacOS
|
|
|
|
|
|
|
|
class MainFlutterWindow: NSWindow {
|
|
|
|
override func awakeFromNib() {
|
|
|
|
let flutterViewController = FlutterViewController()
|
|
|
|
let windowFrame = self.frame
|
|
|
|
self.contentViewController = flutterViewController
|
|
|
|
self.setFrame(windowFrame, display: true)
|
2024-04-22 14:28:18 +00:00
|
|
|
self.minSize = NSSize(width: 380, height: 600)
|
2024-04-12 16:38:20 +00:00
|
|
|
|
|
|
|
RegisterGeneratedPlugins(registry: flutterViewController)
|
|
|
|
|
|
|
|
super.awakeFromNib()
|
|
|
|
}
|
|
|
|
}
|