I\'ve tried several methods to disable scroll, including using CSS position: fixed, attribute overflow-scroll=\"false\" and etc, but all methods failed
position: fixed
overflow-scroll=\"false\"
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); } }