rename/update materials_and_textures sample project

This commit is contained in:
Nick Fisher
2025-03-08 11:20:10 +08:00
parent c52052c1b9
commit 72711ee64f
81 changed files with 191 additions and 81 deletions

View File

@@ -0,0 +1,13 @@
import Cocoa
import FlutterMacOS
@main
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return true
}
}