forked from sagnik/Project_Velocity
16 lines
390 B
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")
|
|
}
|
|
}
|