mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 14:24:59 +00:00
17 lines
322 B
Swift
17 lines
322 B
Swift
import Foundation
|
|
import UIKit
|
|
|
|
@IBDesignable
|
|
class VariableHeightProgressView: UIProgressView {
|
|
|
|
@IBInspectable
|
|
var progressBarHeight: CGFloat = 2.0 {
|
|
didSet {
|
|
let transform = CGAffineTransform(scaleX: 1.0, y: progressBarHeight)
|
|
self.transform = transform
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
//
|