|
@@ -1,6 +1,7 @@
|
1
|
1
|
package com.reactnativenavigation.parse;
|
2
|
2
|
|
3
|
3
|
import com.reactnativenavigation.parse.params.Color;
|
|
4
|
+import com.reactnativenavigation.parse.params.NullColor;
|
4
|
5
|
import com.reactnativenavigation.parse.parsers.ColorParser;
|
5
|
6
|
|
6
|
7
|
import org.json.JSONObject;
|
|
@@ -15,7 +16,7 @@ public class StatusBarOptions {
|
15
|
16
|
return result;
|
16
|
17
|
}
|
17
|
18
|
|
18
|
|
- public Color backgroundColor = new Color(android.graphics.Color.BLACK);
|
|
19
|
+ public Color backgroundColor = new NullColor();
|
19
|
20
|
|
20
|
21
|
public void mergeWith(StatusBarOptions other) {
|
21
|
22
|
if (other.backgroundColor.hasValue()) backgroundColor = other.backgroundColor;
|