What worked for me
I have replaced Scrollview and Lazyvstack with a 'List' and it has resolved the stuttering/flickering issue for me.
So for the above example, try to change this code
VStack {
Button("Shuffle items") {
items = MockData.randomMessages(count: 100)
}
ScrollView {
LazyVStack(spacing: 10) {
ForEach(Array(items
......
}
To this:
VStack {
Button("Shuffle items") {
items = MockData.randomMessages(count: 100)
}
List {
ForEach(Array(items
......
}
Let me know if it solved your problem.
Thanks
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: