Browse Source

Set disabled title bar button color if AppStyle is undefined (#505)

Guy Carmeli 8 years ago
parent
commit
7da1b4fa74

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

@@ -16,6 +16,7 @@ public class StyleParamsParser {
16 16
     public StyleParams parse() {
17 17
         StyleParams result = new StyleParams();
18 18
         if (params == null) {
19
+            result.titleBarDisabledButtonColor = getTitleBarDisabledButtonColor();
19 20
             return result;
20 21
         }
21 22