Created
January 26, 2019 10:19
-
-
Save Aymenworks/558f37d9e917b43caaedda44f3f2c1ad 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
private func setup() { | |
layer.addSublayer(gradientLayer) | |
gradientLayer.colors = [Colors.pink.cgColor, Colors.beige.cgColor, Colors.pink.cgColor] | |
gradientLayer.startPoint = CGPoint(x: 0, y: 0.5) | |
gradientLayer.endPoint = CGPoint(x: 1, y: 0.5) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment