2015-10-07 23:20:05 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const React = require('react-native');
|
|
|
|
|
|
|
|
module.exports = React.StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'stretch',
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
},
|
2015-10-27 08:52:26 +00:00
|
|
|
navigator: {
|
|
|
|
flex: 1,
|
|
|
|
},
|
2015-10-07 23:20:05 +00:00
|
|
|
listItem: {
|
|
|
|
borderColor: "#c8c7cc",
|
|
|
|
borderBottomWidth: 0.5,
|
2015-10-26 19:10:40 +00:00
|
|
|
alignItems: 'stretch',
|
2015-10-07 23:20:05 +00:00
|
|
|
alignSelf: 'stretch',
|
|
|
|
flexDirection: 'row',
|
|
|
|
flex: 1,
|
|
|
|
height: 44,
|
|
|
|
},
|
2015-10-27 08:52:26 +00:00
|
|
|
listItemLeftSide: {
|
2015-10-26 19:10:40 +00:00
|
|
|
flexDirection: 'column',
|
2015-10-27 08:52:26 +00:00
|
|
|
alignItems: 'center',
|
2015-10-26 19:10:40 +00:00
|
|
|
justifyContent: 'center',
|
2015-10-27 08:52:26 +00:00
|
|
|
width: 36,
|
2015-10-26 19:10:40 +00:00
|
|
|
},
|
|
|
|
listItemCheckbox: {
|
2015-10-27 21:23:17 +00:00
|
|
|
borderColor: '#ccc',
|
|
|
|
borderWidth: 1,
|
|
|
|
textAlign: 'center',
|
2015-10-26 19:10:40 +00:00
|
|
|
width: 16,
|
|
|
|
height: 16,
|
2015-10-27 21:23:17 +00:00
|
|
|
lineHeight: 14,
|
|
|
|
},
|
|
|
|
listItemCount: {
|
|
|
|
borderColor: '#ccc',
|
|
|
|
borderWidth: 1,
|
|
|
|
borderRadius: 8,
|
|
|
|
textAlign: 'center',
|
|
|
|
fontSize: 12,
|
|
|
|
width: 24,
|
|
|
|
height: 18,
|
|
|
|
lineHeight: 16,
|
2015-10-26 19:10:40 +00:00
|
|
|
},
|
|
|
|
listItemInput: {
|
|
|
|
fontFamily: 'System',
|
|
|
|
fontSize: 15,
|
|
|
|
flexDirection: 'column',
|
|
|
|
flex: 1,
|
|
|
|
},
|
2015-10-07 23:20:05 +00:00
|
|
|
listItemText: {
|
|
|
|
fontFamily: 'System',
|
|
|
|
fontSize: 15,
|
|
|
|
flexDirection: 'column',
|
|
|
|
flex: 1,
|
2015-10-26 19:10:40 +00:00
|
|
|
lineHeight: 30,
|
2015-10-07 23:20:05 +00:00
|
|
|
},
|
2015-10-27 10:08:18 +00:00
|
|
|
listItemTextSpecial: {
|
|
|
|
fontStyle: 'italic',
|
|
|
|
},
|
2015-10-27 00:13:33 +00:00
|
|
|
listItemDelete: {
|
|
|
|
paddingLeft: 12,
|
|
|
|
paddingRight: 12,
|
|
|
|
flexDirection: 'column',
|
|
|
|
justifyContent: 'center',
|
|
|
|
},
|
2015-10-07 23:20:05 +00:00
|
|
|
instructions: {
|
|
|
|
textAlign: 'center',
|
|
|
|
color: '#333333',
|
|
|
|
marginBottom: 5,
|
|
|
|
}
|
|
|
|
});
|