2019-04-18 20:57:35 +00:00
|
|
|
import { StyleSheet, PixelRatio } from 'react-native';
|
|
|
|
|
|
|
|
import sharedStyles from '../../views/Styles';
|
|
|
|
|
|
|
|
export const ROW_HEIGHT = 75 * PixelRatio.getFontScale();
|
2019-07-15 16:54:28 +00:00
|
|
|
export const ACTION_WIDTH = 80;
|
|
|
|
export const SMALL_SWIPE = ACTION_WIDTH / 2;
|
|
|
|
export const LONG_SWIPE = ACTION_WIDTH * 3;
|
2019-04-18 20:57:35 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
2020-07-31 17:06:22 +00:00
|
|
|
flex: {
|
|
|
|
flex: 1
|
|
|
|
},
|
2019-04-18 20:57:35 +00:00
|
|
|
container: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
2019-07-01 14:20:38 +00:00
|
|
|
paddingLeft: 14,
|
2019-04-18 20:57:35 +00:00
|
|
|
height: ROW_HEIGHT
|
|
|
|
},
|
|
|
|
centerContainer: {
|
|
|
|
flex: 1,
|
|
|
|
paddingVertical: 10,
|
|
|
|
paddingRight: 14,
|
2019-12-04 16:39:53 +00:00
|
|
|
borderBottomWidth: StyleSheet.hairlineWidth
|
2019-04-18 20:57:35 +00:00
|
|
|
},
|
|
|
|
title: {
|
|
|
|
flex: 1,
|
|
|
|
fontSize: 17,
|
|
|
|
lineHeight: 20,
|
|
|
|
...sharedStyles.textMedium
|
|
|
|
},
|
|
|
|
alert: {
|
|
|
|
...sharedStyles.textSemibold
|
|
|
|
},
|
|
|
|
row: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'flex-start'
|
|
|
|
},
|
|
|
|
titleContainer: {
|
|
|
|
width: '100%',
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
date: {
|
|
|
|
fontSize: 13,
|
|
|
|
marginLeft: 4,
|
|
|
|
...sharedStyles.textRegular
|
|
|
|
},
|
|
|
|
updateAlert: {
|
|
|
|
...sharedStyles.textSemibold
|
|
|
|
},
|
|
|
|
status: {
|
2020-06-05 13:28:58 +00:00
|
|
|
marginLeft: 4,
|
2019-04-18 20:57:35 +00:00
|
|
|
marginRight: 7,
|
|
|
|
marginTop: 3
|
|
|
|
},
|
|
|
|
markdownText: {
|
|
|
|
flex: 1,
|
|
|
|
fontSize: 14,
|
|
|
|
lineHeight: 17,
|
2019-12-04 16:39:53 +00:00
|
|
|
...sharedStyles.textRegular
|
2019-04-18 20:57:35 +00:00
|
|
|
},
|
|
|
|
avatar: {
|
|
|
|
marginRight: 10
|
2019-07-01 14:20:38 +00:00
|
|
|
},
|
2019-07-15 16:54:28 +00:00
|
|
|
upperContainer: {
|
|
|
|
overflow: 'hidden'
|
|
|
|
},
|
|
|
|
actionsContainer: {
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
height: ROW_HEIGHT
|
|
|
|
},
|
2019-07-01 14:20:38 +00:00
|
|
|
actionText: {
|
2019-07-04 16:15:30 +00:00
|
|
|
fontSize: 15,
|
|
|
|
justifyContent: 'center',
|
|
|
|
marginTop: 4,
|
|
|
|
...sharedStyles.textSemibold
|
2019-07-01 14:20:38 +00:00
|
|
|
},
|
2019-07-15 16:54:28 +00:00
|
|
|
actionLeftButtonContainer: {
|
|
|
|
position: 'absolute',
|
|
|
|
height: ROW_HEIGHT,
|
2019-07-01 14:20:38 +00:00
|
|
|
justifyContent: 'center',
|
2019-07-15 16:54:28 +00:00
|
|
|
top: 0
|
2019-07-01 14:20:38 +00:00
|
|
|
},
|
2019-07-15 16:54:28 +00:00
|
|
|
actionRightButtonContainer: {
|
|
|
|
position: 'absolute',
|
|
|
|
height: ROW_HEIGHT,
|
2019-07-01 14:20:38 +00:00
|
|
|
justifyContent: 'center',
|
2019-12-04 16:39:53 +00:00
|
|
|
top: 0
|
2019-07-01 14:20:38 +00:00
|
|
|
},
|
2019-07-15 16:54:28 +00:00
|
|
|
actionButton: {
|
|
|
|
width: ACTION_WIDTH,
|
|
|
|
height: '100%',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center'
|
2019-04-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
});
|