2024-05-18 10:17:16 +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-06-29 13:03:15 +00:00
|
|
|
self.minSize = NSSize(width: 380, height: 540)
|
2024-05-18 10:17:16 +00:00
|
|
|
|
|
|
|
RegisterGeneratedPlugins(registry: flutterViewController)
|
|
|
|
|
|
|
|
super.awakeFromNib()
|
|
|
|
}
|
|
|
|
}
|