Improve connection selection UI
This commit is contained in:
parent
33d84b40db
commit
f8fc37d7e0
@ -57,9 +57,12 @@ struct ContentView: View {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Picker("Connection type", selection: $coordinator.connectionType) {
|
Picker("Connection type", selection: $coordinator.connectionType) {
|
||||||
ForEach(ConnectionStrategy.allCases, id: \.rawValue) { connection in
|
Text(ConnectionStrategy.local.description).tag(ConnectionStrategy.local)
|
||||||
Text(connection.description).tag(connection)
|
Text(ConnectionStrategy.remote.description).tag(ConnectionStrategy.remote)
|
||||||
}
|
Text(ConnectionStrategy.remoteFirst.description).tag(ConnectionStrategy.remoteFirst)
|
||||||
|
// ForEach(ConnectionStrategy.allCases, id: \.rawValue) { connection in
|
||||||
|
// Text(connection.description).tag(connection)
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
.pickerStyle(.segmented)
|
.pickerStyle(.segmented)
|
||||||
.padding(.horizontal, 30)
|
.padding(.horizontal, 30)
|
||||||
|
Loading…
Reference in New Issue
Block a user