Created
April 3, 2020 17:50
-
-
Save Exey/2915fae10cc4ba845c9a5957c8cbdf75 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
extension AnyTransition { | |
static var moveUpAndFade: AnyTransition { | |
let insertion = AnyTransition.move(edge: .top).combined(with: .opacity) | |
let removal = AnyTransition.move(edge: .top).combined(with: .opacity) | |
return .asymmetric(insertion: insertion, removal: removal) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment