dashboard
repositories
activity
search
login
APPS
/
PAILot
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
fix: markdown links open in browser/app instead of copying to clipboard
Matthias Nott
9 days ago
d420bfc4b7c1699b7df8a1eb6d295b1835a26108
[APPS/PAILot.git]
/
macos
/
Runner
/
MainFlutterWindow.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
RegisterGeneratedPlugins(registry: flutterViewController)
super.awakeFromNib()
}
}