updated sample

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2023-08-22 08:59:34 -05:00
parent c32e45d0bb
commit 5636660422

View File

@ -202,12 +202,13 @@ class ButtonGroupViewController: BaseViewController<ButtonGroup> {
extension ButtonGroupViewController: ComponentSampleable {
static func makeSample() -> ComponentSample {
let component = Self.makeComponent()
let onClick: (ButtonBase) -> Void = { button in print("\(button.text!) clicked")}
component.buttons = [
Button().with{ $0.use = .secondary; $0.text = "Secondary" },
Button().with{ $0.use = .primary; $0.text = "Primary" },
TextLink().with { $0.size = .large; $0.text = "Large Text Link" },
TextLink().with { $0.text = "Widge Label Button" },
TextLinkCaret().with { $0.text = "Text Link Caret" }
Button().with{ $0.use = .secondary; $0.text = "Secondary"; $0.onClick = onClick},
Button().with{ $0.use = .primary; $0.text = "Primary"; $0.onClick = onClick },
TextLink().with { $0.size = .large; $0.text = "Large Text Link"; $0.onClick = onClick },
TextLink().with { $0.text = "Widge Label Button"; $0.onClick = onClick },
TextLinkCaret().with { $0.text = "Text Link Caret"; $0.onClick = onClick}
]
return ComponentSample(component: component)