Guy Carmeli 8 vuotta sitten
vanhempi
commit
60f2e2370b

+ 1
- 1
android/app/src/main/java/com/reactnativenavigation/params/parsers/StyleParamsParser.java Näytä tiedosto

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

+ 1
- 1
package.json Näytä tiedosto

7
     "type": "git",
7
     "type": "git",
8
     "url": "https://github.com/wix/react-native-navigation.git"
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
   "description": "React Native Navigation - truly native navigation for iOS and Android",
11
   "description": "React Native Navigation - truly native navigation for iOS and Android",
12
   "nativePackage": true,
12
   "nativePackage": true,
13
   "bugs": {
13
   "bugs": {

+ 1
- 1
src/deprecated/platformSpecificDeprecated.android.js Näytä tiedosto

106
     drawBelowTopBar: !originalStyleObject.drawUnderNavBar,
106
     drawBelowTopBar: !originalStyleObject.drawUnderNavBar,
107
     bottomTabsColor: originalStyleObject.tabBarBackgroundColor,
107
     bottomTabsColor: originalStyleObject.tabBarBackgroundColor,
108
     bottomTabsButtonColor: originalStyleObject.tabBarButtonColor,
108
     bottomTabsButtonColor: originalStyleObject.tabBarButtonColor,
109
-    selectedBottomTabsButtonColor: originalStyleObject.tabBarSelectedButtonColor
109
+    bottomTabsSelectedButtonColor: originalStyleObject.tabBarSelectedButtonColor
110
   }
110
   }
111
 }
111
 }
112
 
112