kinghat/tabbed-card

Enhancement: More than one card per TAB

Closed this issue · 2 comments

It would be great if it would be possible to have more than one card in one tab.

For e.g.:

cards:
  - card: button
    ...
  - card: button
    ...

you can do this with the grid card provided by ha:

image

type: custom:tabbed-card
tabs:
  - card:
      square: true
      columns: 2
      type: grid
      cards:
        - show_name: true
          show_icon: true
          type: button
          tap_action:
            action: toggle
          entity: light.bed_light
        - show_name: true
          show_icon: true
          type: button
          tap_action:
            action: toggle
          entity: light.bed_light
        - show_name: true
          show_icon: true
          type: button
          tap_action:
            action: toggle
          entity: light.bed_light
    attributes:
      label: Grid Card

please close if this solves your issue.

Thank you. That helped!