feat: add macos support to stream_chat_flutter example app

This commit is contained in:
groovinchip
2021-07-16 19:41:32 -04:00
parent d73b201915
commit 9fbbe976ba
27 changed files with 1306 additions and 0 deletions
@@ -0,0 +1,9 @@
import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}