Created
May 6, 2019 16:38
-
-
Save lwinged/2050021b0a44f5b0bd127d6b9b309ca2 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
default class LotsOfStyles extends Component { | |
render() { | |
return ( | |
<View style={styles.greybox}> | |
<Text>Lorem Ipsum</Text> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
greybox: { | |
backgroundColor: #e0e0e0, | |
width: 320px; | |
height: 240px; | |
font: 900 24px Georgia; | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment