Fixed that iOS 14 sometimes doesn't focus text field on click

This commit is contained in:
dankito 2020-10-04 23:21:05 +02:00
parent 0bfeddeea3
commit fc6d2042af
1 changed files with 5 additions and 0 deletions

View File

@ -83,6 +83,11 @@ struct LabelledUIKitTextField: View {
}) })
.hidden() // Hide the background .hidden() // Hide the background
) )
.onTapGesture {
DispatchQueue.main.async {
self.focusTextField = true
}
}
} }
} }