Created
April 25, 2018 03:04
-
-
Save krekoten/8f75497487f063ce6288ef33f641faae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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