File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 4
4
font-family : 'materialdesignicons-webfont' , 'Material Design Icons' ;
5
5
}
6
6
MDTabStrip {
7
- selected-item-color : # FFFFFF ;
7
+ selected-item-color : # bff937 ;
8
8
un-selected-item-color : # 404040 ;
9
9
highlight-color : # 4CFFFF ;
10
10
}
Original file line number Diff line number Diff line change @@ -5,9 +5,7 @@ import { AppModule } from './app/app.module';
5
5
6
6
if ( global . isIOS ) {
7
7
themer . setPrimaryColor ( '#bff937' ) ;
8
- themer . setPrimaryColorVariant ( '#33B5E5' ) ;
9
- themer . setAccentColor ( '#ff8a39' ) ;
10
- themer . setSecondaryColor ( '#a830d7' ) ;
8
+
11
9
}
12
10
13
11
// A traditional NativeScript application starts by initializing global objects,
Original file line number Diff line number Diff line change @@ -577,12 +577,12 @@ export class Tabs extends TabsBase {
577
577
if ( tabStripItems ) {
578
578
if ( tabStripItems [ newIndex ] ) {
579
579
tabStripItems [ newIndex ] . _emit ( TabStripItem . selectEvent ) ;
580
- // this.updateItemColors(tabStripItems[newIndex]);
580
+ this . updateItemColors ( tabStripItems [ newIndex ] ) ;
581
581
}
582
582
583
583
if ( tabStripItems [ oldIndex ] ) {
584
584
tabStripItems [ oldIndex ] . _emit ( TabStripItem . unselectEvent ) ;
585
- // this.updateItemColors(tabStripItems[oldIndex]);
585
+ this . updateItemColors ( tabStripItems [ oldIndex ] ) ;
586
586
}
587
587
}
588
588
You can’t perform that action at this time.
0 commit comments