Allow server to mask imageview models. Unmasked by default.

This commit is contained in:
Kyle Matthew Hedden 2022-03-31 20:10:05 -04:00
parent 8ff374045b
commit 241b9d701a

View File

@ -26,6 +26,7 @@
public var localBundle: Bundle? public var localBundle: Bundle?
public var cornerRadius: CGFloat? public var cornerRadius: CGFloat?
public var clipsImage: Bool? public var clipsImage: Bool?
public var shouldMaskRecordedView: Bool = false
//-------------------------------------------------- //--------------------------------------------------
// MARK: - Initializer // MARK: - Initializer
@ -54,5 +55,6 @@
case contentMode case contentMode
case cornerRadius case cornerRadius
case clipsImage case clipsImage
case shouldMaskRecordedView
} }
} }