@Luffy wrote:
constructor(nav: NavController) { this.nav = nav; } presentActionSheet() { let actionSheet = ActionSheet.create({ title: 'Leave this page', buttons: [ { text: 'Destructive', style: 'destructive', handler: () => { this.nav.pop() //pop not work here! } }, { text: 'Cancel', style: 'cancel', handler: () => { console.log('Cancel clicked'); } } ] }); this.nav.present(actionSheet); }
Posts: 1
Participants: 1