Skip to content

Instantly share code, notes, and snippets.

View cpatterson-lilly's full-sized avatar

Chris Patterson cpatterson-lilly

View GitHub Profile
import Foundation
import UIKit
struct ViewStyle<T> {
let style: (T) -> Void
}
let filled = ViewStyle<UIButton> {
$0.setTitleColor(.white, for: .normal)
$0.backgroundColor = .red