|
@@ -47,6 +47,8 @@ public class StyleParamsParser {
|
47
|
47
|
result.bottomTabsButtonColor = getColor("bottomTabsButtonColor", getDefaultBottomTabsButtonColor());
|
48
|
48
|
result.selectedBottomTabsButtonColor =
|
49
|
49
|
getColor("bottomTabsSelectedButtonColor", getDefaultSelectedBottomTabsButtonColor());
|
|
50
|
+ result.bottomTabBadgeTextColor = getColor("bottomTabBadgeTextColor", getBottomTabBadgeTextColor());
|
|
51
|
+ result.bottomTabBadgeBackgroundColor = getColor("bottomTabBadgeBackgroundColor", getBottomTabBadgeBackgroundColor());
|
50
|
52
|
|
51
|
53
|
result.navigationBarColor = getColor("navigationBarColor", getDefaultNavigationColor());
|
52
|
54
|
result.forceTitlesDisplay = getBoolean("forceTitlesDisplay", getDefaultForceTitlesDisplay());
|
|
@@ -82,6 +84,14 @@ public class StyleParamsParser {
|
82
|
84
|
return AppStyle.appStyle == null ? new StyleParams.Color() : AppStyle.appStyle.selectedBottomTabsButtonColor;
|
83
|
85
|
}
|
84
|
86
|
|
|
87
|
+ private StyleParams.Color getBottomTabBadgeTextColor() {
|
|
88
|
+ return new StyleParams.Color();
|
|
89
|
+ }
|
|
90
|
+
|
|
91
|
+ private StyleParams.Color getBottomTabBadgeBackgroundColor() {
|
|
92
|
+ return new StyleParams.Color();
|
|
93
|
+ }
|
|
94
|
+
|
85
|
95
|
private StyleParams.Color getDefaultBottomTabsButtonColor() {
|
86
|
96
|
return AppStyle.appStyle == null ? new StyleParams.Color() : AppStyle.appStyle.bottomTabsButtonColor;
|
87
|
97
|
}
|