Alert Scrollbar - Ionic

Asked

Viewed 61 times

1

Good Afternoon

I would like to know how to get the scrollbar from the Alert presentConfirm() { Let Alert = this.alertCtrl.create({ title: 'Leaving the App', message: 'Are you sure you want to quit? ',

  buttons: [
    {
      text: 'CANCELAR',
      role: 'CANCELAR',
      handler: () => {
        console.log('Cancel clicked');
      }
    },
    {
      text: 'SIM',
      handler: () => {
        this.navCtrl.push(HomePage);
      }
    }
  ]
});
alert.present();

}

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.