adevinta / spark-ios

✨ Simple, Modular & Accessible UI Components for your iOS Applications
MIT License
17 stars 4 forks source link

Right icon in chips #273

Open ImeneSediri opened 1 year ago

ImeneSediri commented 1 year ago

In chips, can we have the possibilities : - to add an icon at the right of the label (instead of the "close" icon) - to add a badge at the right of the label (I have already created an issue for the badge in chip)

image
michael-zimmermann commented 1 year ago

This should be possible with the current implementation:

let chipView = ChipUIFactory().create(
      theme: SparkKitService.themes.private,
      intenColor: .alert,
      variant: .dashed,
      label: "Title"
    )
chipView.component = myImageView