Browse Source

version bump

Guy Carmeli 8 years ago
parent
commit
60f2e2370b

+ 1
- 1
android/app/src/main/java/com/reactnativenavigation/params/parsers/StyleParamsParser.java View File

@@ -40,7 +40,7 @@ public class StyleParamsParser {
40 40
         result.bottomTabsColor = getColor("bottomTabsColor", getDefaultBottomTabsColor());
41 41
         result.bottomTabsButtonColor = getColor("bottomTabsButtonColor", getDefaultBottomTabsButtonColor());
42 42
         result.selectedBottomTabsButtonColor =
43
-                getColor("selectedBottomTabsButtonColor", getDefaultSelectedBottomTabsButtonColor());
43
+                getColor("bottomTabsSelectedButtonColor", getDefaultSelectedBottomTabsButtonColor());
44 44
 
45 45
         result.navigationBarColor = getColor("navigationBarColor", getDefaultNavigationColor());
46 46
 

+ 1
- 1
package.json View File

@@ -7,7 +7,7 @@
7 7
     "type": "git",
8 8
     "url": "https://github.com/wix/react-native-navigation.git"
9 9
   },
10
-  "version": "2.0.0-experimental.2",
10
+  "version": "2.0.0-experimental.3",
11 11
   "description": "React Native Navigation - truly native navigation for iOS and Android",
12 12
   "nativePackage": true,
13 13
   "bugs": {

+ 1
- 1
src/deprecated/platformSpecificDeprecated.android.js View File

@@ -106,7 +106,7 @@ function convertStyleParams(originalStyleObject) {
106 106
     drawBelowTopBar: !originalStyleObject.drawUnderNavBar,
107 107
     bottomTabsColor: originalStyleObject.tabBarBackgroundColor,
108 108
     bottomTabsButtonColor: originalStyleObject.tabBarButtonColor,
109
-    selectedBottomTabsButtonColor: originalStyleObject.tabBarSelectedButtonColor
109
+    bottomTabsSelectedButtonColor: originalStyleObject.tabBarSelectedButtonColor
110 110
   }
111 111
 }
112 112