fix text field

This commit is contained in:
Duong Thai 2024-03-13 14:22:28 +07:00
parent 07ce48fe6c
commit 22aa840b0f

View file

@ -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)
}
}