mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
cd41766e69
* feat: Add minimum size for macos app * fix: Adjust font sizing and spaces in wallet list page and wallet selection dropdown
47 lines
1.8 KiB
Swift
47 lines
1.8 KiB
Swift
import Cocoa
|
|
import FlutterMacOS
|
|
import IOKit.pwr_mgt
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: FlutterAppDelegate {
|
|
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
return true
|
|
}
|
|
|
|
override func applicationDidFinishLaunching(_ notification: Notification) {
|
|
let controller : FlutterViewController = mainFlutterWindow?.contentViewController as! FlutterViewController
|
|
|
|
let utilsChannel = FlutterMethodChannel(
|
|
name: "com.cake_wallet/native_utils",
|
|
binaryMessenger: controller.engine.binaryMessenger)
|
|
utilsChannel.setMethodCallHandler({ [weak self] (call: FlutterMethodCall, result: @escaping FlutterResult) -> Void in
|
|
switch call.method {
|
|
case "sec_random":
|
|
guard let args = call.arguments as? Dictionary<String, Any>,
|
|
let count = args["count"] as? Int else {
|
|
result(nil)
|
|
return
|
|
}
|
|
|
|
result(secRandom(count: count))
|
|
case "setMinWindowSize":
|
|
guard let self = self else {
|
|
result(false)
|
|
return
|
|
}
|
|
if let arguments = call.arguments as? [String: Any],
|
|
let width = arguments["width"] as? Double,
|
|
let height = arguments["height"] as? Double {
|
|
DispatchQueue.main.async {
|
|
self.mainFlutterWindow?.minSize = CGSize(width: width, height: height)
|
|
}
|
|
result(true)
|
|
} else {
|
|
result(false)
|
|
}
|
|
default:
|
|
result(FlutterMethodNotImplemented)
|
|
}
|
|
})
|
|
}
|
|
}
|