You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -21,6 +21,11 @@ export class TabViewItem extends ViewBase {
21
21
* Gets or sets the icon source of the TabViewItem. This could either be a a file name or resource id.
22
22
*/
23
23
publiciconSource: string;
24
+
25
+
/**
26
+
* Gets or sets the text transform of the tab titles.
27
+
*/
28
+
textTransform: TextTransform;
24
29
}
25
30
26
31
/**
@@ -52,6 +57,26 @@ export class TabView extends View {
52
57
*/
53
58
selectedIndex: number;
54
59
60
+
/**
61
+
* Gets or sets the text color of the tabs titles.
62
+
*/
63
+
tabTextColor: Color;
64
+
65
+
/**
66
+
* Gets or sets the background color of the tabs.
67
+
*/
68
+
tabBackgroundColor: Color;
69
+
70
+
/**
71
+
* Gets or sets the text color of the selected tab title.
72
+
*/
73
+
selectedTabTextColor: Color;
74
+
75
+
/**
76
+
* Gets or sets the color of the horizontal line drawn below the currently selected tab on Android.
77
+
*/
78
+
androidSelectedTabHighlightColor: Color;
79
+
55
80
/**
56
81
* Gets the native [android widget](http://developer.android.com/reference/android/support/v4/view/ViewPager.html) that represents the user interface for this component. Valid only when running on Android OS.
0 commit comments