Skip to content

Instantly share code, notes, and snippets.

@fabiomazucato
Created December 28, 2020 03:06
Show Gist options
  • Save fabiomazucato/34e7f4105efe60e9d65610ecf3bc45aa to your computer and use it in GitHub Desktop.
Save fabiomazucato/34e7f4105efe60e9d65610ecf3bc45aa to your computer and use it in GitHub Desktop.
Skeleton - Home (styles.js)
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
const styles = StyleSheet.create({
scrollView: {
backgroundColor: Colors.lighter
},
engine: {
position: 'absolute',
right: 0
},
body: {
backgroundColor: Colors.white
},
sectionContainer: {
marginTop: 32,
paddingHorizontal: 24
},
sectionTitle: {
fontSize: 24,
fontWeight: '600',
color: Colors.black
},
sectionDescription: {
marginTop: 8,
fontSize: 18,
fontWeight: '400',
color: Colors.dark
},
highlight: {
fontWeight: '700'
},
footer: {
color: Colors.dark,
fontSize: 12,
fontWeight: '600',
padding: 4,
paddingRight: 12,
textAlign: 'right'
}
})
export default styles
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment