2 // ProgressButton.swift
5 // Created by Pawel Dabrowski on 20/09/2018.
6 // Copyright © 2018 Fundacja Nowoczesna Polska. All rights reserved.
11 class ProgressButton: UIView {
13 var progressView: UIView!
14 var titleLabel: UILabel!
15 var button: UIBarButtonItem!
16 var progressWidthConstraint: NSLayoutConstraint!
18 var bgColor: UIColor = .black{
20 progressView.backgroundColor = bgColor
24 var textColor: UIColor = .black{
26 progressView.backgroundColor = bgColor
30 override init(frame: CGRect) {
31 super.init(frame: frame)
37 required init?(coder aDecoder: NSCoder) {
38 fatalError("init(coder:) has not been implemented")
41 func setBackgroundColor(color: UIColor) {
48 func setupConstraints() {