Hi,
Is that true? The following very simple view still causes that problem:
struct ContentView: View {
@State private var text = ""
var body: some View {
NavigationStack {
ScrollView {
}
.refreshable {
try? await Task.sleep(for: .seconds(1))
}
.searchable(text: $text)
.navigationTitle("Demo")
}
}
}