Naveen Vignesh
Naveen Vignesh

Reputation: 1359

Re-positioning tab view to bottom in nativescript angular

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

Answers (1)

Rohan
Rohan

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

Related Questions