I am trying to implement a button that presents another scene with a \"Slide from Botton\" animation.
PresentationButton looked like a good candidate, so I gave it
Xcode 12.0 - SwiftUI 2 - iOS 14
Now possible. Use fullScreenCover() modifier.
var body: some View { Button("Present!") { self.isPresented.toggle() } .fullScreenCover(isPresented: $isPresented, content: FullScreenModalView.init) }
Hacking With Swift