Hello. So I have this problem : I want to use a swipe-card with homekit-card, but I also want to use columns inside a row. For example the first row would have two columns. But when I use panel mode, the swipe-card is full width of the screen (the swipe works, but in my case i want to have five cards in one column, four in the other, and both of these columns should be swipeable seperataly), and I cannot seem to figure out how to use columns still. This is my code:
type: 'custom:swipe-card'
parameters:
centeredSlides: true
scrollbar:
draggable: true
hide: true
snapOnRelease: true
spaceBetween: 8
cards:
- type: 'custom:homekit-card'
enableColumns: true
rows:
- columns:
- column: 1
entities:
- entities:
- entity: switch.living_room_lights_1
- entity: switch.living_room_lights_2
- entity: light.dining_lights
icon: 'mdi:lightbulb'
offIcon: 'mdi:lightbulb'
- entity: switch.office_lights
- entity: switch.bedroom_lights
title: Main area lights
tileOnRow: 5
- type: 'custom:homekit-card'
entities:
- entities:
- entity: switch.laundry_lights
- entity: switch.hallway_lights
- entity: switch.spa_lights
- entity: switch.bathroom_lights
title: Unpopular lights
row: 1
I am attaching a picture showing the full width swipe card, and I added a yellow line to show where I want the column split to happen. Thanks for any help!