LazyVStack inside ScrollView performance issues on iOS 16

I'm using the newest version of XCode together with iOS 16.0.3. I'm trying to implement an everyday use case - a LazyVStack inside a ScrollView. On my iPhone 13 Pro which has a 120Hz display I'm not able to get a buttery smooth scroll without stuttering and jumping even for this simple example:

ScrollView {
	LazyVStack {
		ForEach(1...100, id: \.self) { value in
		  Text("Some long text which wraps to 2 lines because why not, .....!!!! \(value)")
		}
	}
}

Is it a known issue of iOS 16?

LazyVStack inside ScrollView performance issues on iOS 16
 
 
Q