Hi,
I'm pretty new to HA. I want to create this simple UI for an input_datetime and input_boolean. Something clean, aligned, with time-picker (from HACS) and a switch to toggle the boolean (see example image).
So far, I've been frustratingly unsuccessful. Can't find a way to create the switch so it appears as toggle and not a button. Using "entity" card doesn't seem to work (displayed as state) and putting it inside "entities" messes up the alignment and has an icon I can't seem to remove.
type: custom:vertical-stack-in-card
cards:
# This part is ok
- type: custom:time-picker-card
entity: input_datetime.water_heater_timer_start_time
name: Water Heater Start Time
icon: mdi:timer-sync
layout:
name: inside
thin: true
align_controls: right
# This doesn't display a switch
- type: entity
entity: input_boolean.water_heater_timer_active
Seems like something trivial to do, any ideas?
Thanks