URL input for server on tvOS

This commit is contained in:
Ethan Pippin 2021-07-21 23:48:57 -06:00
parent 49eaaef6ff
commit 840414f801
1 changed files with 1 additions and 0 deletions

View File

@ -111,6 +111,7 @@ struct ConnectToServerView: View {
TextField(NSLocalizedString("Server URL", comment: ""), text: $uri) TextField(NSLocalizedString("Server URL", comment: ""), text: $uri)
.disableAutocorrection(true) .disableAutocorrection(true)
.autocapitalization(.none) .autocapitalization(.none)
.keyboardType(.URL)
Button { Button {
viewModel.connectToServer() viewModel.connectToServer()
} label: { } label: {