Skip to content

Instantly share code, notes, and snippets.

@lesniakania
Last active April 14, 2016 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lesniakania/8c3a57dd217f133a4924cf6ff03f2e33 to your computer and use it in GitHub Desktop.
Save lesniakania/8c3a57dd217f133a4924cf6ff03f2e33 to your computer and use it in GitHub Desktop.
'use strict';
import React from 'react-native';
let {
StyleSheet,
} = React;
let colors = {
blue: '#1EC1F7',
darkBlue: '#005673',
lightBlue: '#E8F9FF',
borderColor: '#005673',
white: '#ffffff',
}
let styles = StyleSheet.create({
navBar: {
backgroundColor: colors.blue,
borderBottomColor: colors.darkBlue,
borderBottomWidth: 2,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
flex: 1,
},
scene: {
flex: 1,
paddingTop: 60,
backgroundColor: colors.white,
},
container: {
flex: 1,
flexDirection: 'column',
padding: 10,
},
list: {
flexDirection: 'column',
},
listItem: {
flex: 1,
padding: 10,
paddingTop: 20,
paddingBottom: 20,
backgroundColor: colors.lightBlue,
borderColor: colors.borderColor,
borderWidth: 1,
},
listItemText: {
fontSize: 18,
}
});
export default styles;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment