Last active
December 7, 2018 18:31
-
-
Save vialyx/3f464471761ad1bc8ea564774d5557c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct HighlightAnimatableSettings { | |
var duration: TimeInterval = 0.5 | |
var delay: TimeInterval = 0.0 | |
var springDamping: CGFloat = 1.0 | |
var springVelocity: CGFloat = 0.0 | |
var options: UIView.AnimationOptions = [.allowUserInteraction] | |
var transform: CGAffineTransform = .init(scaleX: 0.90, y: 0.90) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment