I just tried ionic serve --lab and beta 14 at the same time! Very nice tool.
When testing my app to see the changes, I discovered that the Android tabs are now at the top. I have no issue with that (I know I also can change it to go back to bottom), but for some reason, it hides a part of my list view! See below
Sorry for the delay. Here is the Codepen. Donāt forget the issue is with Android, not for iphone. Also, I did not have the opportunity to verify if the issue on real phones. Only with ionic serve --lab
Same problem here with the ionic-starter-tabs project - works fine on iOS and in the browser, tabs placed in right under the nav-bar on Android. Just ran āionic start myApp tabsā, didnāt change anything.
Since Iām completely new to ionic this is especially annoying, since I have no clue (yet) how to explicitly set the tabs to ābottomā for Androidā¦
<ion-tabs>
<ion-tab>
<ion-nav-view>
here, each tab has <ion-view><ion-content>
</ion-nav-view>
</ion-tab>
</ion-tabs>
If I remove the <ion-nav-view> and keep only the <ion-view>, it does not work.
I donāt see you using the directive that I was using in the view.units.html. It seems it screws things up when using the directive (unless I am not using it correctly?)
Would you mind to try those links? I based the codes with your new CodePen with the directive. You will see the result
The first one, the top of the directive is behind the nav-bar
Iām facing the same problem. After I updated to Beta 14 the tabs are at the top on my samsung galaxy s2 no matter what I try. Even if I open the codepen @mhartington provided in the browser of the samsung the tabs are at the top.
P.s.: everything is normal if Iām opening it on an Iphone.
At compile time, the ion-content has a watch on it to detect if any headers, footers, or tabs are visible.
Since you placed it inside another directive, it misses the calls itās looking for.
So a easy solution would be to
A) Donāt use the directive - Doesnāt seem to offer a big savings.
B) move the ion-content from the directive and into the view.