diff --git a/tests/app/ui/tab-view/tab-view.md b/tests/app/ui/tab-view/tab-view.md index 31f115a31..e2e829955 100644 --- a/tests/app/ui/tab-view/tab-view.md +++ b/tests/app/ui/tab-view/tab-view.md @@ -47,3 +47,47 @@ Using a TabView requires the "ui/tab-view" module. 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 every `TabViewItem`. Value options: `capitalize`, `lowercase`, `none`, `uppercase`. + +```XML + + + + + + + + + + + + +``` + +* `androidSelectedTabHighlightColor`android specific property (coresponding CSS property `android-selected-tab-highlight-color`) - setup underline color of the `Tab`s in Android. + +```XML + + + + + + + + + + + + +``` \ No newline at end of file