Browse Source

fix android rooBackgroundImage support (#3089)

Yee Wong 6 years ago
parent
commit
cd80eca782

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

83
         result.topTabsHeight = getInt("topTabsHeight", getDefaultTopTabsHeight());
83
         result.topTabsHeight = getInt("topTabsHeight", getDefaultTopTabsHeight());
84
 
84
 
85
         result.screenBackgroundColor = getColor("screenBackgroundColor", getDefaultScreenBackgroundColor());
85
         result.screenBackgroundColor = getColor("screenBackgroundColor", getDefaultScreenBackgroundColor());
86
+        result.rootBackgroundImageName = params.getString("rootBackgroundImageName");
86
 
87
 
87
         result.bottomTabsInitialIndex = getInt("initialTabIndex", 0);
88
         result.bottomTabsInitialIndex = getInt("initialTabIndex", 0);
88
         result.bottomTabsHidden = getBoolean("bottomTabsHidden", getDefaultBottomTabsHidden());
89
         result.bottomTabsHidden = getBoolean("bottomTabsHidden", getDefaultBottomTabsHidden());