Re-positioning tab view to bottom in nativescript angular

Viewed 419

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>
1 Answers

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).

Related