I created a new nativescript project using the CLI and selected the "tab navigation". I now have the default 3 tabs and I can't find how can I make the default/selected tab to be the rightmost/center tab.
I already tried to move the tabs around by it is always the leftmost that get loaded first.
<TabView androidTabsPosition="bottom">
<page-router-outlet
*tabItem="{title: 'Home', iconSource: getIconSource('home')}"
name="homeTab">
</page-router-outlet>
<page-router-outlet
*tabItem="{title: 'Browse', iconSource: getIconSource('browse')}"
name="browseTab">
</page-router-outlet>
<page-router-outlet
*tabItem="{title: 'Search', iconSource: getIconSource('search')}"
name="searchTab">
</page-router-outlet>
</TabView>