Ionic 2 disable scroll

前端 未结 9 1189
暗喜
暗喜 2021-02-03 21:00

I\'ve tried several methods to disable scroll, including using CSS position: fixed, attribute overflow-scroll=\"false\" and etc, but all methods failed

9条回答
  •  感情败类
    2021-02-03 21:39

    For disable scroll in ion-content can use setScrollDisabled() method. You should follow steps below.

    In hello.ts

     import { app } from 'ionic-angular';
    
       public class HelloPage
       {
           constructor(private app: App) {};
    
            ngAfterViewInit(){
            this.app.setScrollDisabled(true);
          }
        }
    

提交回复
热议问题