Ionic menu scroll not working


Ionic menu scroll not working- This is most common issue when we are working with ionic. This issue mostly comes when you have not added the height of the ion-scroll. You can fix the error by adding the style height of content.


How to Solve – Ionic menu scroll not working

Add the following style to fix the scrolling issue –

Ion scroll not working

    <ion-side-menu side="left" overflow-scroll="true">
      
	  <ion-scroll zooming="true" direction="xy" style="height:95%">
          </ion-scroll>
	 
    </ion-side-menu>

The above style=”height:95%” will fix your issue and make sidebar scrollable.


Advertisements

Add Comment

📖 Read More