FancyGradient — это подкласс UIView, который позволяет делать анимированные градиенты в iOS-приложении. Написано на чистом Swift.
Пример использования:
let fancyView = FancyGradientView(colors: [UIColor.black, UIColor.orange], direction: .down, type: .axial) view.addSubview(fancyView) // Animate the colors fancyView.animate(newColors: [UIColor.red, UIColor.black], duration: 4) // Animate the direction fancyView.animate(newDirection: .left, duration: 4)