import SwiftUI struct MeView: View { var body: some View { ScrollView { VStack(spacing: 16) { TjPlaceholder(label: "我的 · 模型管理 / Face ID / 关于\n(W6 实现)") .frame(width: 280, height: 180) #if DEBUG DebugAIRunner() #endif } .padding(.vertical, 24) } .background(Tj.Palette.sand.ignoresSafeArea()) } } #Preview { MeView() }