updated vcs

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-04-24 17:31:26 -05:00
parent 64b823da48
commit cee74d0e32
2 changed files with 3 additions and 0 deletions

View File

@ -181,6 +181,7 @@ class ButtonIconViewController: BaseViewController<ButtonIcon> {
let name = Icon.Name.addToFavorite
component.iconName = name
component.onChange = { c in print("changed: \(c.isSelected)") }
//setup UI
surfacePickerSelectorView.text = component.surface.rawValue
surfaceTypePickerSelectorView.text = component.surfaceType.rawValue

View File

@ -99,6 +99,8 @@ class TileContainerViewController: BaseViewController<TileContainer> {
addContentTopView(view: .makeWrapper(for: component))
component.width = 150
component.color = .secondary
component.accessibilityLabel = "Tile Container"
component.addContentView(Label().with { $0.text = "Testing Label" })
setupPicker()
setupModel()
}