Skip to content

Instantly share code, notes, and snippets.

@Edudjr
Created October 24, 2022 01:31
Show Gist options
  • Save Edudjr/a3554b19967216bfa233ecad8285bee9 to your computer and use it in GitHub Desktop.
Save Edudjr/a3554b19967216bfa233ecad8285bee9 to your computer and use it in GitHub Desktop.
struct AnimationSample: View {
@State var displaySheet = false
@State var shake = false
var body: some View {
Text("Shake Me")
.font(.title)
.onTapGesture {
shake = true
}
.shake($shake) {
displaySheet = true
}
.sheet(isPresented: $displaySheet) {
Text("Another view!")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment