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