Sections in LazyVStack jump/flicker on scroll

ScrollView(.vertical) {
            LazyVStack {
                ForEach(0..<700, id: \.self) { index in
                    Section {
                        Text("Content \(index)")
                            .font(.headline)
                            .padding()
                    } header: {
                        Text("Section \(index)")
                            .font(.title)
                            .padding()
                    }
                }
            }
        }

iOS: 18.5, iPhone 15 Pro Max, Xcode 16.4

Sections in LazyVStack jump/flicker on scroll
 
 
Q