Browse Source

set result.topBarElevationShadowEnabled true in AppStyle (#583)

Guy Carmeli 7 years ago
parent
commit
69f809d6f9

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

17
         StyleParams result = new StyleParams();
17
         StyleParams result = new StyleParams();
18
         if (params == null) {
18
         if (params == null) {
19
             result.titleBarDisabledButtonColor = getTitleBarDisabledButtonColor();
19
             result.titleBarDisabledButtonColor = getTitleBarDisabledButtonColor();
20
+            result.topBarElevationShadowEnabled = true;
20
             return result;
21
             return result;
21
         }
22
         }
22
 
23