I am attempting to create a tab content page using the "standard" method recommended by the ionic template example.
However, I have noticed that when switching between tabs on Android, the view title flickers. This issue is not present on iOS or desktop browsers. However, if you switch to device mode in Chrome for Android devices, you will see the flickering.
Is there a solution to overcome this problem?
menu.html
<ion-side-menus enable-menu-with-back-views="false">
<ion-side-menu-content>
<ion-nav-bar class="bar-positive">
<ion-nav-back-button>
</ion-nav-back-button>
<ion-nav-buttons side="left">
<button class="button button-icon button-clear ion-navicon" menu-toggle="left">
</button>
</ion-nav-buttons>
</ion-nav-bar>
<ion-nav-view name="menuContent"></ion-nav-view>
</ion-side-menu-content>
<ion-side-menu side="left">
<ion-header-bar class="bar-positive">
<h1 class="title">Left</h1>
</ion-header-bar>
<ion-content>
<ion-list>
<ion-item menu-close href="#/app/tab/content1">
Tab 1 Content 1
</ion-item>
</ion-list>
</ion-content>
</ion-side-menu>
</ion-side-menus>
Tab.html
<ion-tabs class="tabs-striped tabs-top tabs-background-positive tabs-color-light">
<ion-tab title="Content1" href="#/app/tab/content1">
<ion-nav-view name="tab-Content"></ion-nav-view>
</ion-tab>
<ion-tab title="Content2" href="#/app/tab/content2">
<ion-nav-view name="tab-Content2"></ion-nav-view>
</ion-tab>
</ion-tabs>
content1.html
<ion-view view-title="Bookmarks">
<ion-content>
<h1>Content 1</h1>
</ion-content>
</ion-view>
content2.html
<ion-view view-title="Bookmarks">
<ion-content>
<h1>Content 2</h1>
</ion-content>
</ion-view>