This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component, PureComponent } from 'react'; | |
import { connect } from 'react-redux'; | |
import { View, ActivityIndicator, Image, Platform } from 'react-native'; | |
import { FileSystem } from 'expo' | |
import md5 from 'js-md5'; | |
const ios = Platform.OS == 'ios' | |
import { downloadImage, removeFromDownloading } from './NotDumbImageActions'; | |
import { imgDownloadIsOld } from './cacheRedux'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component, } from 'react'; | |
import { View, Text, TouchableOpacity, FlatList, ListItem, Image, TextInput, Dimensions, | |
Animated, StyleSheet, SectionList, PanResponder, PixelRatio, ScrollView } from 'react-native'; | |
import sectionListGetItemLayout from 'react-native-section-list-get-item-layout' | |
var { height, width } = Dimensions.get('window') | |
/* this component is re-used between displaying the friends/groups and being able to pick them in metoo posts, so there are a few different if statements that |
NewerOlder