Post

Replies

Boosts

Views

Activity

Reply to SwiftUI - Horizontal ScrollView locks up when transitioning from the bottom
In my case, I have also set the height of ScrollView to something bigger than 115, otherwise it still locks up. The problem is 116 is too high for my case. ScrollView(.horizontal, showsIndicators: false) {       HStack {         ForEach(options, id: \.value) { item in           Text(item.label).frame(width: 50)         }       }.frame(minHeight: 0, maxHeight: .greatestFiniteMagnitude)     }.frame(height: 116) // 115 and below not works
Jun ’20