import SwiftUI /// 关于。M6 上架前用户协议替换为正式文本(暂复用隐私政策页占位)。 struct AboutView: View { var body: some View { List { Section { VStack(spacing: 10) { Image(systemName: "tag.fill") .font(.system(size: 52)) .foregroundStyle(AppColors.brand) Text("傻瓜比价").font(.title2.bold()) Text("版本 \(appVersion)") .font(.caption).foregroundStyle(.secondary) } .frame(maxWidth: .infinity) .padding(.vertical, 12) } Section { NavigationLink { PrivacyPolicyView() } label: { Text("隐私政策") } NavigationLink { PrivacyPolicyView() } label: { Text("用户协议") } } Section { Text("买东西前先比一比,自动帮你找全网最低价、领券省钱。") .font(.footnote).foregroundStyle(.secondary) } } .navigationTitle("关于") .navigationBarTitleDisplayMode(.inline) } private var appVersion: String { (Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String) ?? "1.0.0" } }