Skip to content

Instantly share code, notes, and snippets.

@imballinst
Created December 12, 2017 06:52
Show Gist options
  • Save imballinst/e19611e4c801f190b0fb1f46a12eb6c9 to your computer and use it in GitHub Desktop.
Save imballinst/e19611e4c801f190b0fb1f46a12eb6c9 to your computer and use it in GitHub Desktop.
React Native with and without StyleSheet
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const styleObject = { fontSize: 24 };
const styles = StyleSheet({
textStyle: styleObject,
});
const AnElement = () => (
<View>
<Text style={styleObject}>Hi!</Text>
<Text style={styles.textStyle}>Hi too!</Text>
</View>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment