本文介绍了更改离子中所有页面的NavBar颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我是离子新手,想要学习它。我的问题是如何更改离子3中所有页面的导航栏颜色。

I am new in ionic and wants to learn it. my question is How to change nav bar color for all the pages in ionic 3.

我一直在使用以下代码

<ion-header>
  <ion-navbar color="primary">
    <button ion-button menuToggle>
      <ion-icon name="menu"></ion-icon>
    </button>
    <ion-title>Hello Ionic</ion-title>
  </ion-navbar>
</ion-header>

有没有办法改变所有页面的导航栏颜色,而不是手动执行< ion-navbar color =primary>

Is there any way to change nav bar color for all the pages instead of manually doing <ion-navbar color="primary">

推荐答案

将以下行添加到variables.scss文件全局更改颜色。

Add following line to variables.scss file to change the color globally.

$toolbar-background: #3D9BDD;

这篇关于更改离子中所有页面的NavBar颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 21:08