Skip to content

Instantly share code, notes, and snippets.

@krekoten
Created April 25, 2018 03:04
Show Gist options
  • Select an option

  • Save krekoten/8f75497487f063ce6288ef33f641faae to your computer and use it in GitHub Desktop.

Select an option

Save krekoten/8f75497487f063ce6288ef33f641faae to your computer and use it in GitHub Desktop.
const window = Dimensions.get('window')
const styles = StyleSheet.create({
containerStyle: {
overflow: 'hidden',
width: window.width,
height: window.width / 2
},
contentContainerStyle: {
borderRadius: window.width,
width: window.width * 2,
height: window.width * 2,
marginLeft: -(window.width / 2),
position: 'absolute',
bottom: 0,
overflow: 'hidden'
},
content: {
height: window.width / 2,
width: window.width,
position: 'absolute',
bottom: 0,
marginLeft: window.width / 2,
justifyContent: 'center',
alignItems: 'center'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment