We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Transaction inside gestures .onChange, doesn't work, below code should animate rectangle fill color between the states.
.onChange
To Reproduce Steps to reproduce the behavior:
Rectangle() .fill(self.isDetectingLongPress ? Color.pink : (self.completedLongPress ? Color.purple : Color.gray)) .frame(width: 100, height: 100) .gesture(LongPressGesture(minimumDuration: 2) .updating($isDetectingLongPress) { currentState, gestureState, transaction in gestureState = currentState transaction.animation = Animation.easeIn(duration: 2.0) } .onEnded { finished in self.completedLongPress = finished })
Expected behavior Rectangle should be animated.
The text was updated successfully, but these errors were encountered:
#538 (comment)
Sorry, something went wrong.
carson-katri
No branches or pull requests
Describe the bug
Transaction inside gestures
.onChange
, doesn't work, below code should animate rectangle fill color between the states.To Reproduce
Steps to reproduce the behavior:
Expected behavior
Rectangle should be animated.
The text was updated successfully, but these errors were encountered: