Post

Replies

Boosts

Views

Activity

iOS 16 SwiftUI TextField in section header (List)
If run this code on iOS16 keyboard gets dismissed randomly when character is typed (please see gif), while on iOS15 everything is fine. struct ContentView: View { let names = ["Holly", "Josh", "Rhonda", "Ted"] @State var text = "" var body: some View { List { Section { ForEach(searchResults, id: \.self) { name in Text(name) } } header: { TextField("Search for name", text: $text) } } } var searchResults: [String] { if text.isEmpty { return names } else { return names.filter { $0.contains(text) } } } } It happens when content is in a section with a header. Is it bug from apple introduced in iOS16 or am I doing something wrong? Has anyone had the same issue?
2
2
923
Dec ’22