I cannot navigate to home menu

My Home Assistant mobile App (for Android) starts automatically in one of my Dashboards (it was the default dashboard and I edited it). I cannot navigate to the main menu. I only see this dashboard. Tapping on the “back” button (red in the screenshot) has no function.

That means, that I cannot switch between the dashboard and I cannot go to the menu screen.

Any ideas, what I could have messed up with home assistant?

2 Likes

Hi MSco

Have you tried first …

  • killing the HA companion app on your android phone and restart it … (on my iphone this helps)
  • acess your HA server via your phone browser … (via http://homeassistant.local:8123/ )

You will need to explain what and how you have been editing the dashboard …

Hope to have helped

1 Like

@GSVerspecht Thanks for your help.

I have the problem on multiple phones. Reinstalling the app did not work, unfortunately.
In the browser, I have the same problem in the mobile view. In the Desktop view, everything is fine.

I added some switches and covers to my home dashboard. Here is the code:

views:
  - title: Home
    icon: mdi:home
    subview: true
    type: sidebar
    badges: []
    cards:
      - type: entities
        entities:
          - entity: switch.kuche_warmwasser_sockel_1
            name: Küche Warmwasser
          - entity: light.homeatic_ip_access_point_badezimmer_luftung
            name: Badezimmer Lüftung
          - entity: switch.wz_lampe_2_sockel_1
            name: WZ Lampe 2
          - entity: switch.testdose_sockel_1
            name: WZ Lampe 3
          - entity: switch.lampe_draussen_sockel_1
            name: Draußen Lampe
        title: Schalter
      - type: entities
        entities:
          - entity: cover.homeatic_ip_access_point_rollladen_kuche
          - entity: cover.homeatic_ip_access_point_rollladen_wohnzimmer_links
          - entity: cover.homeatic_ip_access_point_rollladen_wohnzimmer_rechts
          - entity: cover.homeatic_ip_access_point_rollladen_schlafzimmer_barbara
          - entity: cover.homeatic_ip_access_point_rollladen_schlafzimmer_martin
          - entity: cover.homeatic_ip_access_point_rollladen_kinderzimmer_links
        state_color: true
        title: Rollladen
        show_header_toggle: false
title: Home Dashboard

Try changing the default dashboard, had another user encounter the same issue and I think that is what fixes it for them.

1 Like

Ok, I got it! With a new dashboard I didn’t have this issue. So I copied step by step my dashboard code into the new dashboard. With the exact same code, the issue still occured.

Removing the line subview: true solved my issue.

I don’t know how this line came there and what this line does, but without that line, everything works fine.

Thank you guys! :slight_smile:

3 Likes

Thank you, had the same problem, and that was the solution, namely: "Removing the line subview: true"

2 Likes

I had exactly the same issue. The solution works also.