Created
September 7, 2016 07:36
-
-
Save yogieputra8/18d00b74134c47f64ecb727fbf5506d7 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
import { StyleSheet } from 'react-native'; | |
module.exports = StyleSheet.create({ | |
container:{ | |
flex: 1, | |
justifyContent: 'center', | |
alignItems: 'center', | |
padding: 40 | |
}, | |
input:{ | |
height: 50, | |
borderColor: '#000', | |
borderWidth: 1, | |
borderRadius: 5, | |
margin: 2, | |
textAlign: 'center' | |
}, | |
buttonContainer:{ | |
justifyContent: 'center', | |
height: 50, | |
alignSelf: 'stretch', | |
borderColor: '#000', | |
borderWidth: 1, | |
borderRadius: 5, | |
margin: 2 | |
}, | |
button:{ | |
textAlign: 'center' | |
}, | |
links:{ | |
flexDirection: 'row', | |
justifyContent: 'space-between', | |
}, | |
link:{ | |
color: '#0000FF' | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment