@@ -10,7 +10,6 @@ struct LoginForm<S: Session>: View {
10
10
@State private var loginError : LoginError ?
11
11
@State private var currentPage : LoginPage = . serverURL
12
12
@State private var loading : Bool = false
13
- @FocusState private var focusedField : LoginField ?
14
13
15
14
let inspection = Inspection < Self > ( )
16
15
@@ -20,19 +19,9 @@ struct LoginForm<S: Session>: View {
20
19
case . serverURL:
21
20
serverURLPage
22
21
. transition ( . move( edge: . leading) )
23
- . onAppear {
24
- DispatchQueue . main. async {
25
- focusedField = . baseAccessURL
26
- }
27
- }
28
22
case . sessionToken:
29
23
sessionTokenPage
30
24
. transition ( . move( edge: . trailing) )
31
- . onAppear {
32
- DispatchQueue . main. async {
33
- focusedField = . sessionToken
34
- }
35
- }
36
25
}
37
26
}
38
27
. animation ( . easeInOut, value: currentPage)
@@ -90,9 +79,8 @@ struct LoginForm<S: Session>: View {
90
79
text: $baseAccessURL,
91
80
prompt: Text ( " https://coder.example.com " )
92
81
) . autocorrectionDisabled ( )
93
- . focused ( $focusedField, equals: . baseAccessURL)
94
82
}
95
- } . formStyle ( . grouped) . scrollDisabled ( true ) . padding ( )
83
+ } . formStyle ( . grouped) . scrollDisabled ( true ) . padding ( . horizontal )
96
84
Divider ( )
97
85
HStack {
98
86
Spacer ( )
@@ -122,7 +110,6 @@ struct LoginForm<S: Session>: View {
122
110
SecureField ( " Session Token " , text: $sessionToken, prompt: Text ( " ●●●●●●●● " ) )
123
111
. autocorrectionDisabled ( )
124
112
. privacySensitive ( )
125
- . focused ( $focusedField, equals: . sessionToken)
126
113
HStack ( spacing: 0 ) {
127
114
Text ( " Generate a session token at " )
128
115
. font ( . subheadline)
@@ -132,7 +119,7 @@ struct LoginForm<S: Session>: View {
132
119
. foregroundColor ( . blue)
133
120
}
134
121
}
135
- } . formStyle ( . grouped) . scrollDisabled ( true ) . padding ( )
122
+ } . formStyle ( . grouped) . scrollDisabled ( true ) . padding ( . horizontal )
136
123
Divider ( )
137
124
HStack {
138
125
Spacer ( )
@@ -157,14 +144,12 @@ struct LoginForm<S: Session>: View {
157
144
}
158
145
withAnimation {
159
146
currentPage = . sessionToken
160
- focusedField = . sessionToken
161
147
}
162
148
}
163
149
164
150
private func back( ) {
165
151
withAnimation {
166
152
currentPage = . serverURL
167
- focusedField = . baseAccessURL
168
153
}
169
154
}
170
155
}
0 commit comments