Last active
August 4, 2021 16:02
-
-
Save tomasflopes/5482d60deff51adefcdb325f6e85ddd9 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
{ | |
"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