Skip to content

Instantly share code, notes, and snippets.

View mcfans's full-sized avatar
🏠
Working from home

mcfans

🏠
Working from home
View GitHub Profile
@mcfans
mcfans / Gradient.swift
Created December 7, 2020 08:30
UIView Animate Gradient
class GradientView: UIView {
var color: UIColor
init(_ color: UIColor) {
self.color = color
super.init(frame: .zero)
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")