Voip Extra buttons background on iOS 12

This commit is contained in:
Christophe Deschamps 2022-06-17 09:06:52 +02:00
parent 89d93ee7d3
commit 7db3a0fe7b

View file

@ -42,8 +42,14 @@ class VoipExtraButtonsView: UIStackView {
layer.cornerRadius = corner_radius
clipsToBounds = true
let background = UIView()
background.backgroundColor = VoipTheme.voipExtraButtonsBackgroundColor.get()
addSubview(background)
background.layer.cornerRadius = corner_radius
background.clipsToBounds = true
background.matchParentDimmensions().done()
backgroundColor = VoipTheme.voipExtraButtonsBackgroundColor.get()
height(height).done()
let row1 = UIStackView()