Skip to content

Instantly share code, notes, and snippets.

@mrcflorian
Created May 26, 2020 03:59
Show Gist options
  • Save mrcflorian/e298b672ae3bf27354d6a20cbd1521f3 to your computer and use it in GitHub Desktop.
Save mrcflorian/e298b672ae3bf27354d6a20cbd1521f3 to your computer and use it in GitHub Desktop.
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
container: {
flex: 1,
alignItems: 'center'
},
formContainer: {
flexDirection: 'row',
height: 80,
marginTop: 40,
marginBottom: 20,
flex: 1,
paddingTop: 10,
paddingBottom: 10,
paddingLeft: 30,
paddingRight: 30,
justifyContent: 'center',
alignItems: 'center'
},
input: {
height: 48,
borderRadius: 5,
overflow: 'hidden',
backgroundColor: 'white',
paddingLeft: 16,
flex: 1,
marginRight: 5
},
button: {
height: 47,
borderRadius: 5,
backgroundColor: '#788eec',
width: 80,
alignItems: "center",
justifyContent: 'center'
},
buttonText: {
color: 'white',
fontSize: 16
},
listContainer: {
marginTop: 20,
padding: 20,
},
entityContainer: {
},
entityText: {
fontSize: 20,
color: '#333333'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment