Hi,
I’m using the companion app on android. This is on a touch screen.
I have a floorplan layout with wall panel to hide the side and top bars/panel.
However, when I’m in Fullscreen mode, I can’t find a way to exit or show the side bar/panel.
The only work around I have right now is to have the default page be overview with no wall panel, then select the my floor plan.
To exit while in fullscreen, I slide up from the bottom and close the companion app and start it again. Far from ideal.
Is there a way to do this on demand? Like adding a button on my floorplan to display the side bar/panel.
I have this set with kiosk mode from hacs. With this you can create input boolean which reveals/hides top and/or side bar (among other functions) by toggling this entity.
Hi,
Thxs for the reply.
I’m currently using the wall panel from HACS.
I don’t think it supports the hide/unhide side/top bar.
However, I found a very simple method.
By default when goto my floorplan:
/lovelace-mainfloorplan/myfloorplan
it goes to Fullscreen. To disable the fullscreen and show the side/top bars
I added a button on the screen with the following:
- type: custom:button-card
color_type: card
color: rgb(0, 207, 255)
icon: mdi:navigation
tap_action:
action: navigate
navigation_path: /lovelace-mainfloorplan/myfloorplan?wp_enabled=false
This disables the wall panel from going into full screen, Ya!!!