mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-14 05:21:12 +00:00
fix text field
This commit is contained in:
parent
07ce48fe6c
commit
22aa840b0f
1 changed files with 4 additions and 0 deletions
|
@ -22,6 +22,10 @@ public struct RSSAddNewFeed: View {
|
|||
Section("rss.addNewFeed.url.textField.label") {
|
||||
VStack(alignment: .leading) {
|
||||
TextField("rss.addNewFeed.url.textField.placeholder", text: $urlString)
|
||||
.autocorrectionDisabled()
|
||||
.textInputAutocapitalization(.never)
|
||||
.keyboardType(.URL)
|
||||
|
||||
IndicatorView(state: $state)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue