Files
NativeScript/tests/app/ui/tab-view/tab-view.md
Panayot Cankov e135c20b14 Rename the files
2016-05-26 14:30:25 +03:00

873 B

nav-title, title, description, previous_url
nav-title title description previous_url
TabView How-To tab-view 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