From be46ccf4c415f82d1b50bdfa3739543b6288aba9 Mon Sep 17 00:00:00 2001 From: Josh Levine Date: Wed, 8 Apr 2015 16:55:23 -0700 Subject: [PATCH] Navigator: Changed transitioner background color to 'transparent' Summary: ... for setting the transition background color between scenes. For issue #563 Closes https://github.com/facebook/react-native/pull/654 Github Author: Josh Levine Test Plan: Imported from GitHub, without a `Test Plan:` line. --- Libraries/CustomComponents/Navigator/Navigator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/CustomComponents/Navigator/Navigator.js b/Libraries/CustomComponents/Navigator/Navigator.js index e38cbc1b9..220440cd1 100644 --- a/Libraries/CustomComponents/Navigator/Navigator.js +++ b/Libraries/CustomComponents/Navigator/Navigator.js @@ -88,7 +88,7 @@ var styles = StyleSheet.create({ }, transitioner: { flex: 1, - backgroundColor: '#555555', + backgroundColor: 'transparent', overflow: 'hidden', } });