我能够设置后退按钮图标并使用app config删除文本但是如何设置图标的颜色? Ios选择了主要/次要颜色,但在Android和Windows中显示为黑色。
imports: [
IonicModule.forRoot(MyApp,{
'backButtonText':'',
'backButtonIcon':'arrow-back',
'pageTransition':'ios'
},{}
)]
答案 0 :(得分:2)
您需要在组件的 .scss
文件中按照下面的说明进行操作。
.ws,
.md {
.back-button {
color: red;//what ever the color you like
}
}
如果您需要全球,那么您必须按照以下所示进行操作。
注意:我不喜欢使用!important
hack.But,不幸的是,没有它就没有用。
<强> app.scss 强>
.md,
.wp {
.back-button {
color: red !important;//what ever the color you like
}
}