DylanVann / react-native-fast-image

🚩 FastImage, performant React Native image component.
MIT License
8.09k stars 1.47k forks source link

Is it abandoned? #1009

Open sidferreira opened 9 months ago

sidferreira commented 9 months ago

Describe the bug A clear and concise description of what the bug is.

To Reproduce Steps to reproduce the behavior if possible, or a link to a reproduction repo:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Dependency versions

Note: if these are not the latest versions of each I recommend updating as extra effort will not be taken to be backwards compatible, and updating might resolving your issue.

mskarimi commented 9 months ago

@DylanVann

knro commented 8 months ago

This project is abandoned. Any possible maintainers?

pduggi-cf commented 8 months ago

This project absolutely needs a maintainer, I see there are a lot of pull request. Please let me know if I can help in some way. I do not mind putting in 5 hours a week (Me or someone from my team).

fleuverouge commented 6 months ago

Hi @pduggi-cf Looks like the creator has completely abandoned this repo. Do you mind forking into a new repo and continuing the maintenance?

noumantahir commented 6 months ago

any available alternative?.... facing image caching issues on iOS causing app to go out of memory even though we have fail sails in place...

kunalchavhan commented 6 months ago

I am interested in maintaining this repository.

kunalchavhan commented 4 months ago

expo-image is alternative library available. Has anyone used it?

Harshizonnet commented 4 months ago

any available alternative?.... facing image caching issues on iOS causing app to go out of memory even though we have fail sails in place...

Try this one works on both platforms.

import BlastedImage from 'react-native-blasted-image';

<BlastedImage source={{ uri: 'https://example.com/image.png' }} resizeMode="cover" width={200} height={200} style={{ borderRadius: 10 }} />

Harshizonnet commented 4 months ago

expo-image is alternative library available. Has anyone used it?

Try this one bro. it works fine on both.

import BlastedImage from 'react-native-blasted-image';

<BlastedImage source={{ uri: 'https://example.com/image.png' }} resizeMode="cover" width={200} height={200} style={{ borderRadius: 10 }} />