How to change navbar or toolbar height like android material style?

In this case, you can just customize the scss for that page.

For example, the blank starter has a home page.

so I can use

.md {
  .home-page {
    ion-navbar.toolbar {
      min-height: 200px;
    }
  }
}

in my home.scss file.

4 Likes