-
-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
5mb image is not opening in android and loader stops immediately #78
Comments
Hi, sounds like you're having other issues due to the image being so big. This package just uses the regular react-native |
Image is load successfully but loading is not gone and, is this any method or property to set timing of both process work together. i am using in Flatlist and i want to load image in each items. Code is : import FastImage from 'react-native-fast-image';
import * as Progress from 'react-native-progress';
import { createImageProgress } from 'react-native-image-progress';
const LodingImage = createImageProgress(FastImage);
renderItem(data) {
let { item, index } = data;
return (
<TouchableWithoutFeedback onPress={(event)=>this.didSelectNewsFeed(item)}>
<View style={styles.itemBlock}>
<View style={styles.itemMeta}>
<LodingImage
source={{uri:item.image[0]}}
indicator={Progress.Pie}
style={{styles.blockBgImage}} />
</View>
</View>
</TouchableWithoutFeedback>
)
} |
|
No description provided.
The text was updated successfully, but these errors were encountered: