造型按钮警报 - Ionic3

问题描述 投票:0回答:1

任何人都可以帮我设置Android平台中的警报框和按钮,就像在Ios中一样吗?如下图所示?

enter image description here

喜欢

enter image description here

我可以通过以下css属性更改颜色。

.buttonCss { 
button.alert-button:nth-child(1){
  color: #37474f !important;
}

button.alert-button:nth-child(2){
  color:#1565c0 !important;
}
}

请帮我。

ionic2 ionic3
1个回答
1
投票

您可以使用setMode函数轻松完成:

let alert = this.alertCtrl.create(...);
alert.setMode('ios');
© www.soinside.com 2019 - 2024. All rights reserved.