This commit is contained in:
Matt Bruce 2024-08-27 15:21:08 -05:00
commit e73c975b5b

View File

@ -202,11 +202,12 @@ class TableViewController: BaseViewController<Table> {
trailingToolTip.labelText = "5G Ultra Wideband is available in your area" trailingToolTip.labelText = "5G Ultra Wideband is available in your area"
trailingToolTip.tooltipModel = .init(title: "Check the formatting of your address", trailingToolTip.tooltipModel = .init(title: "Check the formatting of your address",
content:"House/Building number then street name") content:"House/Building number then street name")
let image = UIImage(named: "clean-surface")
let imageView = UIImageView(image: image) let iconView = Icon()
iconView.name = .cleanSurface
rows.append(TableRowModel(columns: [TableItemModel(bottomLine: .secondary, component:textArea), rows.append(TableRowModel(columns: [TableItemModel(bottomLine: .secondary, component:textArea),
TableItemModel(bottomLine: .secondary, component:imageView), TableItemModel(bottomLine: .secondary, component:iconView),
TableItemModel(bottomLine: .secondary, component:trailingToolTip)])) TableItemModel(bottomLine: .secondary, component:trailingToolTip)]))
} }