punchnet-macos/punchnet/Views/Settings/SettingsAboutView.swift
2026-01-19 11:36:45 +08:00

41 lines
749 B
Swift

//
// SettingsAboutView.swift
// punchnet
//
// Created by on 2026/1/19.
//
import SwiftUI
struct SettingsAboutView: View {
var body: some View {
VStack(alignment: .leading, spacing: 8) {
Text("关于PunchNet")
HStack {
Text("当前版本")
Text("v1.25(arm64)")
Text("检查更新")
}
Button {
} label: {
Text("用户反馈")
}
HStack {
Text("隐私政策")
Text("服务条款")
}
}
.padding()
}
}
#Preview {
SettingsAboutView()
}