Skip to content

Instantly share code, notes, and snippets.

@mrcflorian
Created May 20, 2020 16:58
Show Gist options
  • Save mrcflorian/499dcf5064d03673ee9f76af2abd1e3f to your computer and use it in GitHub Desktop.
Save mrcflorian/499dcf5064d03673ee9f76af2abd1e3f to your computer and use it in GitHub Desktop.
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
container: {
flex: 1,
alignItems: 'center'
},
title: {
},
logo: {
flex: 1,
height: 120,
width: 90,
alignSelf: "center",
margin: 30
},
input: {
height: 48,
borderRadius: 5,
overflow: 'hidden',
backgroundColor: 'white',
marginTop: 10,
marginBottom: 10,
marginLeft: 30,
marginRight: 30,
paddingLeft: 16
},
button: {
backgroundColor: '#788eec',
marginLeft: 30,
marginRight: 30,
marginTop: 20,
height: 48,
borderRadius: 5,
alignItems: "center",
justifyContent: 'center'
},
buttonTitle: {
color: 'white',
fontSize: 16,
fontWeight: "bold"
},
footerView: {
flex: 1,
alignItems: "center",
marginTop: 20
},
footerText: {
fontSize: 16,
color: '#2e2e2d'
},
footerLink: {
color: "#788eec",
fontWeight: "bold",
fontSize: 16
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment