Skip to content

Instantly share code, notes, and snippets.

@boourns
Last active November 3, 2015 03:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boourns/d4082e841fea540d8348 to your computer and use it in GitHub Desktop.
Save boourns/d4082e841fea540d8348 to your computer and use it in GitHub Desktop.
styles = StyleSheet.create({
box: { position: 'absolute', top:0, left: 0, right:0, bottom:0},
shadow: { backgroundColor: 'black', opacity: 0.1 },
transparent: { backgroundColor: 'transparent' }
});
<View style={{flex: 1}} >
<View style={[styles.box, styles.shadow]} />
<View style={[styles.box, styles.transparent]} >
// put buttons here
</View>
</View>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment