updated backgroundcolor to clear

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-11-18 10:01:28 -06:00
parent 0f1627ca6f
commit 8a85e67681
3 changed files with 3 additions and 0 deletions

View File

@ -92,6 +92,7 @@ open class Control: UIControl, Handlerable, ViewProtocol, Resettable {
// MARK: - ViewProtocol
/// Will be called only once.
open func setup() {
backgroundColor = .clear
translatesAutoresizingMaskIntoConstraints = false
insetsLayoutMarginsFromSafeArea = false
}

View File

@ -84,6 +84,7 @@ open class View: UIView, Handlerable, ViewProtocol, Resettable {
// MARK: - ViewProtocol
/// Will be called only once.
open func setup() {
backgroundColor = .clear
translatesAutoresizingMaskIntoConstraints = false
insetsLayoutMarginsFromSafeArea = false
}

View File

@ -115,6 +115,7 @@ open class LabelBase: UILabel, Handlerable, ViewProtocol, Resettable {
accessibilityCustomActions = []
accessibilityTraits = .staticText
numberOfLines = 0
backgroundColor = .clear
}
//--------------------------------------------------