Skip to content

Instantly share code, notes, and snippets.

@yogieputra8
Created September 7, 2016 07:36
Show Gist options
  • Save yogieputra8/18d00b74134c47f64ecb727fbf5506d7 to your computer and use it in GitHub Desktop.
Save yogieputra8/18d00b74134c47f64ecb727fbf5506d7 to your computer and use it in GitHub Desktop.
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