Skip to content

Instantly share code, notes, and snippets.

@nirsky
Created July 24, 2017 10:14
Show Gist options
  • Save nirsky/e915307f65abd47116628ba2e2be2c9d to your computer and use it in GitHub Desktop.
Save nirsky/e915307f65abd47116628ba2e2be2c9d to your computer and use it in GitHub Desktop.
const styles = StyleSheet.create({
container: {
width: width,
height: height,
backgroundColor: '#E0E0E0',
alignItems: 'center',
justifyContent: 'center',
},
box: {
width: 300,
height: 450,
backgroundColor: 'white',
borderRadius: 10,
padding: 10,
shadowColor: 'black',
shadowOpacity: 0.5,
shadowRadius: 3,
shadowOffset: {
height: 0,
width: 0
},
elevation: 2
},
title: {
fontSize: 20,
fontWeight: 'bold',
marginBottom: 10,
color: 'black'
},
text: {
fontSize: 14,
color: 'black'
},
buttonsContainer: {
flex: 1,
justifyContent: 'flex-end',
alignItems: 'center'
},
button: {
width: 150,
height: 45,
borderRadius: 100,
marginBottom: 10,
backgroundColor: '#41B6E6',
alignItems: 'center',
justifyContent: 'center',
},
buttonText: {
fontWeight: 'bold',
fontSize: 14,
color: 'white'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment