Last active
April 29, 2022 02:45
-
-
Save jerrypm/f84f7a285c1f4fe610c0f6e834842c72 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
| //Visit my blog http://scripttes.blogspot.com/ | |
| //IOS Template https://codecanyon.net/item/simple-qr-code-barcode-scanner-generate-ios-12-and-13/25018066 | |
| import Foundation | |
| import UIKit | |
| extension UIView { | |
| func setGradientBackground(colorOne: UIColor, colorTwo: UIColor) { | |
| let gradientLayer = CAGradientLayer() | |
| gradientLayer.frame = bounds | |
| gradientLayer.colors = [colorOne.cgColor, colorTwo.cgColor] | |
| gradientLayer.locations = [0.0, 4.0] | |
| layer.insertSublayer(gradientLayer, at: 0) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment