updated tilecontainer default background

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2023-01-12 10:04:28 -06:00
parent 1e7648b114
commit 1242a10d41

View File

@ -51,6 +51,7 @@ class TileContainerViewController: BaseViewController {
super.viewDidLoad()
addContentTopView(view: .makeWrapper(for: tileContainer))
tileContainer.width = 150
tileContainer.containerBackgroundColor = .black
setupForm()
setupPicker()
setupModel()
@ -134,6 +135,7 @@ class TileContainerViewController: BaseViewController {
func setupModel() {
//setup UI
surfacePickerSelectorView.text = tileContainer.surface.rawValue
backgroundColorPickerSelectorView.text = tileContainer.containerBackgroundColor.rawValue
paddingPickerSelectorView.text = tileContainer.containerPadding.rawValue
scalingTypePickerSelectorView.text = tileContainer.aspectRatio.rawValue
widthTextField.text = tileContainer.width != nil ? "\(tileContainer.width!)" : ""