import SwiftUI struct SettingsView: View { var body: some View { Form { Section("Backend") { LabeledContent("ComfyUI Endpoint", value: "http://192.168.x.x:8000") } Section("Display") { LabeledContent("Orientation", value: "Landscape Only") } } .navigationTitle("Settings") } }