Reputation: 1401
Could anyone please help me to style the alert box and buttons in android platform like the same in Ios? Just like the following picture?
like
I could change the color by the following css property.
.buttonCss {
button.alert-button:nth-child(1){
color: #37474f !important;
}
button.alert-button:nth-child(2){
color:#1565c0 !important;
}
}
Please help me.
Upvotes: 0
Views: 498
Reputation: 8746
You can easily do it by using setMode
function:
let alert = this.alertCtrl.create(...);
alert.setMode('ios');
Upvotes: 1