This commit is contained in:
Thomas Ricouard 2022-12-30 22:49:12 +01:00
commit 7b32b8ee70

View file

@ -24,8 +24,11 @@ struct AddAccountView: View {
var body: some View { var body: some View {
NavigationStack { NavigationStack {
Form { Form {
TextField("Instance url", text: $instanceName) TextField("Instance URL", text: $instanceName)
.listRowBackground(theme.primaryBackgroundColor) .listRowBackground(theme.primaryBackgroundColor)
.keyboardType(.URL)
.textContentType(.URL)
.textInputAutocapitalization(.never)
if let instance { if let instance {
Button { Button {
isSigninIn = true isSigninIn = true