Reputation: 1359
Can any one explain me how can change the position of native script tabs to bottom for nativescript with angular framework implementation
<TabView **property here to be used to make align at bottom**>
....
....
</TabView>
Upvotes: 3
Views: 461
Reputation: 456
On iOS tabs appear in the bottom of the view, as this is the standard, however in Android a flag must be set:
<TabView androidTabsPosition="bottom" >
This is taken from the TabView documentation on the NativeScript website. I also happened to be in a position to test this immediately on an Android emulator and can confirm it is working (at the time of writing).
Upvotes: 2