Skip to content

Instantly share code, notes, and snippets.

@seyna
Created April 13, 2018 15:32
Show Gist options
  • Save seyna/eba4a444bb8102845b47450add27abe8 to your computer and use it in GitHub Desktop.
Save seyna/eba4a444bb8102845b47450add27abe8 to your computer and use it in GitHub Desktop.
for firebase practice
const React = require('react-native')
const {StyleSheet} = React
const constants = {
actionColor: '#24CE84'
};
var styles = StyleSheet.create({
container: {
backgroundColor: '#f2f2f2',
flex: 1,
},
listview: {
flex: 1,
},
li: {
backgroundColor: '#fff',
borderBottomColor: '#eee',
borderColor: 'transparent',
borderWidth: 1,
paddingLeft: 16,
paddingTop: 14,
paddingBottom: 16,
},
liContainer: {
flex: 2,
},
liText: {
color: '#333',
fontSize: 16,
},
navbar: {
alignItems: 'center',
backgroundColor: '#fff',
borderBottomColor: '#eee',
borderColor: 'transparent',
borderWidth: 1,
justifyContent: 'center',
height: 44,
flexDirection: 'row'
},
navbarTitle: {
color: '#444',
fontSize: 16,
fontWeight: "500"
},
statusbar: {
backgroundColor: '#fff',
height: 22,
},
center: {
textAlign: 'center',
},
actionText: {
color: '#fff',
fontSize: 16,
textAlign: 'center',
},
action: {
backgroundColor: constants.actionColor,
borderColor: 'transparent',
borderWidth: 1,
paddingLeft: 16,
paddingTop: 14,
paddingBottom: 16,
},
})
module.exports = styles
module.exports.constants = constants;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment