SwiftyAnimate icon indicating copy to clipboard operation
SwiftyAnimate copied to clipboard

Composable animations in Swift

Results 4 SwiftyAnimate issues
Sort by recently updated
recently updated
newest added

Animate() .then(animation: translated(duration: 1, x: 0, y: 300, options: [.curveEaseIn])) .and(animation: scaled(duration: 1, x: 0.01, y: 0.01, options: [.curveEaseIn])) When I tried to perform the above animation, I only see...

I saw there is a `swift-4` branch so I tried to install that, but it still gives me quite a few errors. Swift 4.2 changes a lot of the names...

I updated my Xcode to Xcode 9.3 and this error came out BasicAnimation.swift file, line 48 Animate.swift file , line 494 and other problem => Missing argument for parameter #1...

Currently, `.rotate(angle: 360)` does not seem to rotate the view at all. I expected it to keep rotating the view clockwise until it reaches its original position. Is this not...