2018-03-02 15:11:34 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
2019-03-29 19:36:07 +00:00
|
|
|
import { COLOR_SEPARATOR, COLOR_WHITE } from '../../constants/colors';
|
2018-03-02 15:11:34 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
list: {
|
|
|
|
flex: 1,
|
2019-03-29 19:36:07 +00:00
|
|
|
backgroundColor: COLOR_WHITE
|
2018-03-02 15:11:34 +00:00
|
|
|
},
|
|
|
|
item: {
|
|
|
|
flexDirection: 'row',
|
2018-03-29 17:55:37 +00:00
|
|
|
paddingVertical: 10,
|
2018-03-02 15:11:34 +00:00
|
|
|
paddingHorizontal: 16,
|
|
|
|
alignItems: 'center'
|
|
|
|
},
|
|
|
|
avatar: {
|
|
|
|
marginRight: 16
|
|
|
|
},
|
|
|
|
separator: {
|
|
|
|
height: StyleSheet.hairlineWidth,
|
2019-03-27 20:06:57 +00:00
|
|
|
backgroundColor: COLOR_SEPARATOR,
|
2018-08-31 16:46:33 +00:00
|
|
|
marginLeft: 60
|
2018-03-02 15:11:34 +00:00
|
|
|
},
|
2019-03-18 19:13:59 +00:00
|
|
|
loading: {
|
|
|
|
flex: 1
|
2018-03-02 15:11:34 +00:00
|
|
|
}
|
|
|
|
});
|