初始化 SwiftUI 笔记应用项目

This commit is contained in:
2026-07-12 15:36:47 +08:00
parent 651e65412b
commit 4b3499d73d
7 changed files with 506 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
//
// ContentView.swift
// Note
//
// Created by fish on 2026/7/12.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}