Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove drag function from ion-menu?

I'm using ionic 2 and I want to know how to remove drag function from ion-menu ?

like image 784
Ignat Avatar asked Feb 08 '23 21:02

Ignat


1 Answers

In ionic 2:

ionViewDidEnter() {
    this.menu.swipeEnable(false);
  }

check this swipeEnable(shouldEnable, menuId) from ionic v2 docs

In ionic 1: refer to this codepen

like image 195
varun aaruru Avatar answered Feb 11 '23 16:02

varun aaruru