From 8e809e9b24eee6930427edf0b3e876bbda52da88 Mon Sep 17 00:00:00 2001 From: hedger wang Date: Fri, 19 Feb 2016 22:58:38 -0800 Subject: [PATCH] fix broken drawer layout Reviewed By: furdei Differential Revision: D2953499 fb-gh-sync-id: 9f37af631b9540881c5af4dc8abe2b9fd334b807 shipit-source-id: 9f37af631b9540881c5af4dc8abe2b9fd334b807 --- Libraries/ReactIOS/renderApplication.android.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Libraries/ReactIOS/renderApplication.android.js b/Libraries/ReactIOS/renderApplication.android.js index 1abfeb8b3a..49715076ac 100644 --- a/Libraries/ReactIOS/renderApplication.android.js +++ b/Libraries/ReactIOS/renderApplication.android.js @@ -132,11 +132,12 @@ var styles = StyleSheet.create({ // This is needed so the application covers the whole screen // and therefore the contents of the Portal are not clipped. appContainer: { - position: 'absolute', - left: 0, - top: 0, - right: 0, + backgroundColor: 'transparent', bottom: 0, + left: 0, + position: 'absolute', + right: 0, + top: 0, }, });