Files
NativeScript/tests/app/ui/tab-view/tab-view.md

3.5 KiB
Raw Blame History

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. {%snippet article-require-tabview-module%}

Binding TabView.items

{%snippet article-binding-tabview-items%}

Selecting a tab programmatically

{%snippet article-select-tab%}

Creating a TabView

{%snippet article-create-tabview%}

Using selectedIndexChanged changed event

{%snippet article-tabview-selectedIndexChanged%}

Using selectedIndexChanged event from xml

<Page>
 <TabView selectedIndexChanged="onSelectedIndexChanged">
   ...
 </TabView>
</Page>
export function onSelectedIndexChanged(args) {...}

Note: Initially selectedIndexChanged event will be raised just after adding a new items to TabView without any user interaction, which will happen on TabView loaded. SelectedIndexChanged event will be raised because value of the selectedIndex property is changed from undefined (default) (with no items) to 0 (first tab item). Depends on how TabView.items are set or added it may happen to raise one or two times selectedIndexChanged event even before page events (loaded, navigatingTo, navigatedTo, ...).

Styling TabView

For the TabView component could be set three different styling properties

  • selectedTabTextColor (coresponding CSS property selected-tab-text-color) - change the color of the text, while selecting some of the tabs.
  • tabBackgroundColor (coresponding CSS property tab-background-color) - changing the background of the tabs.
  • textTransform (coresponding CSS property text-transform) - setting up textTransform individual for everyTabViewItem. Value options: capitalize, lowercase, none, uppercase.
<TabView selectedTabTextColor="#00FF00" tabBackgroundColor="#FF0000" >
            <TabView.items>
                <TabViewItem title="Tab 1" textTransform="lowercase">
                <TabViewItem.view>
                    <Label text="Label in Tab1" />
                </TabViewItem.view>
                </TabViewItem>
                <TabViewItem title="Tab 2" textTransform="lowercase">
                <TabViewItem.view>
                    <Label text="Label in Tab2" />
                </TabViewItem.view>
                </TabViewItem>
            </TabView.items>
</TabView>
  • androidSelectedTabHighlightColorandroid specific property (coresponding CSS property android-selected-tab-highlight-color) - setup underline color of the Tabs in Android.
<TabView androidSelectedTabHighlightColor="red">
                <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>