Files
Project_Velocity/iOS/Features/Settings/SettingsView.swift

16 lines
390 B
Swift

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")
}
}