Skip to content

Instantly share code, notes, and snippets.

@Edudjr
Last active October 23, 2022 23:02
Show Gist options
  • Save Edudjr/f94f54a737ba703f03233a5abf9af4ae to your computer and use it in GitHub Desktop.
Save Edudjr/f94f54a737ba703f03233a5abf9af4ae to your computer and use it in GitHub Desktop.
Text("Testing")
.scaleEffect(firstAnimation ? 2 : 1)
.foregroundColor(secondAnimation ? .red : .green)
.onTapGesture {
Task {
let animationTime = 0.5
await animate(duration: animationTime) {
firstAnimation = true
}
await animate(duration: animationTime) {
secondAnimation = true
}
displaySheet = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment