I create an ionic app:
ionic start demo sidemenu
Then setup sass:
ionic setup sass
Then run in browser:
ionic serve
But the scrollbar in browser is always visible. How can I hide it? Thanks. ( It seems the old version ionic didn’t have this issue. I’m using currently the latest ionic).
I have the same problem ! only in the last version 1.2.1
In 1.2.x native scroll is default, you can forse to use js scroll by overflow-scroll="false" for <ion-content>. Description
overflow-scroll="false"
<ion-content>
Thanks. It works. But it’s not convenient because has to do this in every ion-content.