how to disable swipe effect of IOS platform in ionic

前端 未结 5 2031
温柔的废话
温柔的废话 2021-01-01 19:24

I\'m new to Ionic . I\'m creating an phonegap app using ionic blank template. When i swipe from left to right on second page of my app a black screen appears. I don\'t know

5条回答
  •  心在旅途
    2021-01-01 20:10

    I wrote below code in app.js file .

    angular.module(....)
    .config(function($stateProvider,$urlRouterProvider,$ionicConfigProvider){
    
        $ionicConfigProvider.views.swipeBackEnabled(false);
    
    .
    .
    .
    .//remaining code in config
    }
    

提交回复
热议问题