nathantannar4 / Transmission

Bridges UIKit presentation APIs to a SwiftUI API so you can use presentation controllers, interactive transitions and more.
BSD 2-Clause "Simplified" License
378 stars 13 forks source link

Slide presentation drag gesture is broken with lazy scroll view #51

Closed PhilipDukhov closed 1 month ago

PhilipDukhov commented 1 month ago
1.3.2 1.3.1
struct Issue51: View {
    var body: some View {
        VStack {

        }
        .presentation(transition: .slide, isPresented: .constant(true)) {
            ScrollView {
                LazyVStack {
                    ForEach(Array(0...100), id: \.self) {
                        Text($0.description)
                    }
                }
            }
        }
    }
}
nathantannar4 commented 1 month ago

Fixed in 1.4.0 👍🏻