EXIT ion-tabs

To simply hide your tabs use this code

    let tabs = document.querySelectorAll('.show-tabbar');
    if (tabs !== null) {
      Object.keys(tabs).map((key) => {
        tabs[key].style.display = 'none';
      });
    }

To show it again change none to flex.

2 Likes