Alert Scrollbar - Ionic

1

Good Afternoon

I would like to know how to shoot the alert scrollbar presentConfirm () {     let alert = this.alertCtrl.create ({       title: 'Exiting the Application'       message: 'Are you sure you want to exit? ',

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

}

    
asked by anonymous 07.06.2018 / 18:25

0 answers