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

DragGesture for .fullscreen #45

Closed AndrewSB closed 3 months ago

AndrewSB commented 3 months ago

is there an option to enable the same drag gesture that exists for sheets when transition: .fullscreen is selected? or do i need to add my own .gesture(DragGesture...) and do an .offset(y:)?

nathantannar4 commented 3 months ago

I recommend using the .slide transition. Its a custom full screen transition I made that is interactive similar to a sheet presentation. .fullscreen is not interactive.

AndrewSB commented 3 months ago

got it