diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-12-28 15:47:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-28 15:47:05 -0800 |
commit | 759d3f11b8d5cbc30db24f2c2356a7df5fcb9030 (patch) | |
tree | 10fff886ebeae51f7b006db2c3cf5d12995c0a8b | |
parent | 2a369e7e479d9ca1f17bf670eeb4b52d5682f362 (diff) | |
download | voidsky-759d3f11b8d5cbc30db24f2c2356a7df5fcb9030.tar.zst |
Use memory caching for android lightbox (#2354)
-rw-r--r-- | src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.android.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.android.tsx b/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.android.tsx index ea740ec91..003ad61ba 100644 --- a/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.android.tsx +++ b/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.android.tsx @@ -320,6 +320,7 @@ const ImageItem = ({ accessibilityLabel={imageSrc.alt} accessibilityHint="" onLoad={() => setIsLoaded(true)} + cachePolicy="memory" /> </GestureDetector> </Animated.View> |