How can I make the AlertController buttons to be in the same line?
const alert = this.alertCtrl.create({
title: 'Warning',
subTitle: 'Specific location',
inputs: [
{
name: 'location',
placeholder: 'Enter the name'
}
],
buttons: [
{
text: 'Cancel',
role: 'cancel',
},
{
text: 'OK',
handler: data => {
this.insert(this.location);
}
}
]
});
alert.present();