π A curated collection of 180 splendid gradients made in swift
180 splendid Gradients inspired by itmeo/webgradients View all the gradients here Β»
view.layer.addSubLayer(Gradients.deepBlue.layer)
public enum Gradients: Int, CaseIterable {
case warmFlame = 1
case nightFade
case springWarmth
case juicyPeach
//...
case fabledSunset
case perfectBlue
}
public enum Direction {
case top
case left
case right
case bottom
case degree(CGFloat)
}
// degree for radian direction supported
let customLayer = Gradients.linear(to: .degree(-225), colors: [0x231557, 0x44107A, 0xFF1361, 0xFFF800], locations: [0.0, 0.29, 0.67, 1.0]) // Fabled Sunset
view.layer.addSubLayer(customLayer)
Gradients is written in Xcode 10, Swift 4+, iOS 9.0+ Required
Gradients is available through Swift Package Manager, Cocoapods or Carthage
dependencies: [
.package(url: "https://github.com/Gradients/Gradients.git", .upToNextMajor(from: "0.3.1"))
]
pod "Gradients"
github "cruisediary/Gradients" ~> 0.3.1
Pull requests are always welcomed ππΌ
- awesome-swift - A collaborative list of awesome Swift libraries and resources. Feel free to contribute!
- awesome-gradient - π A curated list of awesome Gradient frameworks, libraries and software and resources
cruz, [email protected]
Gradients is available under the MIT license. See the LICENSE file for more info.