Hey everyone ,
someone know how can i hide navbar and tabs when scrolling down like in Instagram app ?
Thanks in advance
Hey everyone ,
someone know how can i hide navbar and tabs when scrolling down like in Instagram app ?
Thanks in advance
You should
1. get scroll position.
need import IonicApp.
import {IonicApp} from ‘ionic-angular’;
and
this.app.getComponent(‘hoge-content’).getContentDimensions().scrollTop
2. hide navbar & tabs.
this.tabBarElement = document.querySelector(‘ion-tabbar-section’);
this.tabBarElement.style.display = ‘none’;
this.navBarElement = document.querySelector(‘ion-navbar’);
this.navBarElement.style.display = ‘none’;
this use onPageWillEnter(). And When onPageWillLeave() must display block.
Regards.