mirror of
https://github.com/kkebo/DNSecure.git
synced 2026-03-11 08:54:36 +00:00
fix: improve text field UX in ExcludedDomainsView
This commit is contained in:
parent
3d5397fa7e
commit
bf98ce1860
1 changed files with 4 additions and 0 deletions
|
|
@ -17,6 +17,10 @@ extension ExcludedDomainsView: View {
|
|||
set: { self.domains[i] = $0 }
|
||||
)
|
||||
)
|
||||
.textContentType(.URL)
|
||||
.keyboardType(.URL)
|
||||
.textInputAutocapitalization(.never)
|
||||
.autocorrectionDisabled()
|
||||
}
|
||||
.onDelete { self.domains.remove(atOffsets: $0) }
|
||||
.onMove { self.domains.move(fromOffsets: $0, toOffset: $1) }
|
||||
|
|
|
|||
Loading…
Reference in a new issue