vn-verdnaturachat/app/views/ThreadMessagesView/styles.js

28 lines
449 B
JavaScript
Raw Normal View History

2019-04-17 17:01:03 +00:00
import { StyleSheet } from 'react-native';
import sharedStyles from '../Styles';
export default StyleSheet.create({
list: {
2019-12-04 16:39:53 +00:00
flex: 1
2019-04-17 17:01:03 +00:00
},
listEmptyContainer: {
flex: 1,
alignItems: 'center',
2019-12-04 16:39:53 +00:00
justifyContent: 'center'
2019-04-17 17:01:03 +00:00
},
noDataFound: {
fontSize: 14,
2019-12-04 16:39:53 +00:00
...sharedStyles.textRegular
2019-04-17 17:01:03 +00:00
},
contentContainer: {
paddingBottom: 30
},
separator: {
height: StyleSheet.hairlineWidth,
width: '100%',
marginLeft: 60,
2019-12-04 16:39:53 +00:00
marginTop: 10
2019-04-17 17:01:03 +00:00
}
});