Animate
Animate copied to clipboard
Declarative UIView animations without nested closures
Results
2
Animate issues
Sort by
recently updated
recently updated
newest added
Adds a simple scale method: ``` static func scale(toX x: CGFloat, y: CGFloat, duration: TimeInterval = 0.3) -> Animation { return Animation(duration: duration) { $0.transform = CGAffineTransform(scaleX: x, y: y)...