vn-verdnaturachat/app/views/ShareListView/styles.ts

71 lines
1.3 KiB
TypeScript
Raw Normal View History

2019-07-18 17:44:02 +00:00
import { StyleSheet } from 'react-native';
2019-07-18 17:44:02 +00:00
import { isIOS } from '../../utils/deviceInfo';
import sharedStyles from '../Styles';
export default StyleSheet.create({
container: {
2019-12-04 16:39:53 +00:00
flex: 1
2019-07-18 17:44:02 +00:00
},
2019-07-29 16:33:28 +00:00
emptyContainer: {
padding: 20,
justifyContent: 'center',
alignItems: 'center'
},
2019-07-18 17:44:02 +00:00
content: {
flex: 1,
2019-07-29 16:33:28 +00:00
justifyContent: 'center',
alignItems: 'center'
},
centered: {
justifyContent: 'center',
alignItems: 'center'
2019-07-18 17:44:02 +00:00
},
flatlist: {
2019-07-29 16:33:28 +00:00
marginTop: isIOS ? 6 : 0, // the height of the navigation bar with the searchbar is larger
2019-12-04 16:39:53 +00:00
width: '100%'
2019-07-18 17:44:02 +00:00
},
bordered: {
...sharedStyles.separatorVertical
},
2019-07-29 16:33:28 +00:00
borderBottom: {
...sharedStyles.separatorBottom
2019-07-18 17:44:02 +00:00
},
headerContainer: {
paddingHorizontal: 15,
paddingBottom: 10,
paddingTop: 17
},
headerText: {
...sharedStyles.textRegular,
fontSize: 17,
2019-07-29 16:33:28 +00:00
letterSpacing: 0.27
2019-07-18 17:44:02 +00:00
},
separator: {
...sharedStyles.separatorBottom,
marginLeft: 48
},
fileMime: {
...sharedStyles.textBold,
...sharedStyles.textAlignCenter,
fontSize: 20,
marginBottom: 20
},
title: {
fontSize: 14,
...sharedStyles.textBold
},
permissionTitle: {
fontSize: 16,
marginHorizontal: 30,
...sharedStyles.textMedium,
...sharedStyles.textAlignCenter
},
permissionMessage: {
fontSize: 14,
marginHorizontal: 30,
...sharedStyles.textRegular,
...sharedStyles.textAlignCenter
2019-07-18 17:44:02 +00:00
}
});