mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-06 06:44:58 +00:00
18 lines
322 B
Swift
18 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
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//
|
||
|
//
|