Files
NativeScript/apps/tests/ui/tab-view/tab-view.md
2016-05-02 10:45:50 +03:00

826 B

nav-title, title, description
nav-title title description
TabView How-To tab-view Examples for using TabView

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