Dylan Vann
Dylan Vann
It would be a new feature. We could add something like: `FastImage.isCached(url).then(res => ...)` Another potential feature that could solve this would be something like a cache only mode.
I think it would be better to expose a different entry point for `react-native-web`, but I don't know that much about it.
In the case of `file:` or `content:` urls `FastImage` will fall back to using `Image`. This is included in the current version on npm, `v4.0.8`. edit: oh, I think that's...
Ideally you'd use an immutable url for avatars. - Lookup user object that has an immutable avatar url property. - Display using `FastImage` Alternatively: - Use a non-immutable avatar url....
I generally try to merge things only when there's an implementation for both platforms. One of the really annoying things about RN development in the past has been features only...
We probably do need a way to hook into low memory warnings and clear the in-memory cache. I'm not actually aware of how to get low memory warnings on the...
It already does disk and memory caching. We just need to clear the memory cache on a low memory warning. Actually running out of disk space would be a rare...
Using `removeClippedSubviews={false}` will prevent some memory from being available. There was a memory leak in Android that has been fixed in master, although I'm not sure that code is in...
I can see the use case for this. I think we would need to find a way to make this not a global setting though. It could be a property...
This would help with things like adding fonts to the header. This project is great. Best visual regression testing API ever.