Side menu drag content =false for one page

how to make side menu drag content=false for one page only

1 Like

Hi @Love9056,

angular.module('AAA').controller('userCtrl', function($scope, $ionicSideMenuDelegate) {
    $ionicSideMenuDelegate.canDragContent(false)
}); 

You need to put this code in your controller for the page in which you do not want the side menu to be dragged.

Feel free to like the answer if it helps you. :slight_smile: