only-bible-app v3.7.2+24
git clone https://git.pyrossh.dev/only-bible-app
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
macos/Runner/MainFlutterWindow.swift
| fe24dd6 | 1 | import Cocoa |
| fe24dd6 | 2 | import FlutterMacOS |
| fe24dd6 | 3 | |
| fe24dd6 | 4 | class MainFlutterWindow: NSWindow { |
| fe24dd6 | 5 | override func awakeFromNib() { |
| fe24dd6 | 6 | let flutterViewController = FlutterViewController() |
| fe24dd6 | 7 | let windowFrame = self.frame |
| fe24dd6 | 8 | self.contentViewController = flutterViewController |
| fe24dd6 | 9 | self.setFrame(windowFrame, display: true) |
| fe24dd6 | 10 | |
| fe24dd6 | 11 | RegisterGeneratedPlugins(registry: flutterViewController) |
| fe24dd6 | 12 | |
| fe24dd6 | 13 | super.awakeFromNib() |
| fe24dd6 | 14 | } |
| fe24dd6 | 15 | } |