This commit is contained in:
2024-01-23 18:00:59 +08:00
commit c10f0dd29d
55 changed files with 1906 additions and 0 deletions

18
demo/demoApp.swift Normal file
View File

@@ -0,0 +1,18 @@
//
// demoApp.swift
// demo
//
// Created by Jason on 2024/1/23.
//
import SwiftUI
import SwiftData
@main
struct demoApp: App {
var body: some Scene {
WindowGroup {
TabBarView()
}
}
}