Skip to content

Instantly share code, notes, and snippets.

@tomasflopes
Last active August 4, 2021 16:02
Show Gist options
  • Save tomasflopes/5482d60deff51adefcdb325f6e85ddd9 to your computer and use it in GitHub Desktop.
Save tomasflopes/5482d60deff51adefcdb325f6e85ddd9 to your computer and use it in GitHub Desktop.
{
"Setup StyleSheet React Native": {
"prefix": "rnss",
"body": [
"import { StyleSheet } from 'react-native';",
"",
"const styles = StyleSheet.create({",
" container: {",
" flex: 1,",
" justifyContent: 'center',",
" alignItems: 'center',",
" backgroundColor: '#312e38',",
" },",
" title: {",
" fontWeight: 'bold',",
" fontSize: 22,",
" color: '#fff',",
" },",
"});",
"",
"export default styles;",
""
],
"description": "Setup StyleSheet"
},
"Setup StyleSheet ReactJS": {
"prefix": "rss",
"body": [
"import styled from 'styled-components';",
"",
"export const Container = styled.div`",
" display: flex;",
" align-items: center;",
" justify-content: center;",
"`;",
""
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment