Disable the side menu's swipe to open gesture for Login page (or any page) in Ionic 2

前端 未结 2 1119
日久生厌
日久生厌 2021-01-02 10:05

I\'m new to Ionic 2 & Angular2 and I have downloaded a new Ionic template with the following command

 Ionic start appname sidemenu --v2 --ts
         


        
2条回答
  •  南方客
    南方客 (楼主)
    2021-01-02 10:30

    You can disable/enable sidemenu at any time at any page by calling

    $ionicSideMenuDelegate.canDragContent(false)

    e.g:

    angular.module('ABC').controller('xyzCtrl', function($scope, $ionicSideMenuDelegate) {

    $ionicSideMenuDelegate.canDragContent(false)
    

    });

提交回复
热议问题