From 3f92e09787c0be0b5906f361ed8e5b3f17b2abea Mon Sep 17 00:00:00 2001 From: Marco Bonaldo Date: Sat, 4 Jun 2016 12:36:51 -0700 Subject: [PATCH] Fix header elevation of NavigationExperimental Summary: Updated according to the documentation: http://www.google.com/design/spec/what-is-material/elevation-shadows.html#elevation-shadows-elevation-android- Closes https://github.com/facebook/react-native/pull/7289 Differential Revision: D3390296 Pulled By: ericvicenti fbshipit-source-id: 4c475a6c4b6cd1c40b4d995ed18d31d9e179a69a --- .../CustomComponents/NavigationExperimental/NavigationHeader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/CustomComponents/NavigationExperimental/NavigationHeader.js b/Libraries/CustomComponents/NavigationExperimental/NavigationHeader.js index 0140f3b50..6bde84073 100644 --- a/Libraries/CustomComponents/NavigationExperimental/NavigationHeader.js +++ b/Libraries/CustomComponents/NavigationExperimental/NavigationHeader.js @@ -220,7 +220,7 @@ const styles = StyleSheet.create({ backgroundColor: Platform.OS === 'ios' ? '#EFEFF2' : '#FFF', borderBottomColor: 'rgba(0, 0, 0, .15)', borderBottomWidth: Platform.OS === 'ios' ? StyleSheet.hairlineWidth : 0, - elevation: 2, + elevation: 4, flexDirection: 'row', height: APPBAR_HEIGHT + STATUSBAR_HEIGHT, justifyContent: 'flex-start',