Arj 1411
Arj 1411

Reputation: 1401

Styling Buttons Alert - Ionic3

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?

enter image description here

like

enter image description here

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

Answers (1)

Duannx
Duannx

Reputation: 8746

You can easily do it by using setMode function:

let alert = this.alertCtrl.create(...);
alert.setMode('ios');

Upvotes: 1

Related Questions