Site icon AppTractor

FancyGradient: анимированные градиенты на Swift

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)

Библиотека на GitHub: https://github.com/Nikoloutsos/fancyGradient
Платформа: iOS
⭐️: 23

Exit mobile version