Files
NativeScript/tests/app/ui/tab-view/tab-view.md
2016-06-20 14:32:12 +03:00

899 B

nav-title, title, environment, description, previous_url
nav-title title environment description previous_url
TabView How-To tab-view nativescript Examples for using TabView /ApiReference/ui/tab-view/HOW-TO

TabView

Declaring the TabView in xml.

<Page>
 <TabView>
   <TabView.items>
     <TabViewItem title="Tab 1">
       <TabViewItem.view>
          <Label text="Label in Tab1" />
       </TabViewItem.view>
     </TabViewItem>
     <TabViewItem title="Tab 2">
       <TabViewItem.view>
          <Label text="Label in Tab2" />
       </TabViewItem.view>
     </TabViewItem>
   </TabView.items>
 </TabView>
</Page>

Using a TabView requires the "ui/tab-view" module.

Binding TabView.items

### Selecting a tab programmatically ## Creating a TabView