Add swipe gestures to the lightbox

This commit is contained in:
Paul Frazee 2022-12-16 11:57:45 -06:00
parent 3a44a1cfdc
commit 3aded6887d
8 changed files with 387 additions and 40 deletions

View file

@ -0,0 +1,35 @@
import React from 'react'
import {Image, StyleSheet, useWindowDimensions, View} from 'react-native'
export function Component({uris, index}: {uris: string[]; index: number}) {
const winDim = useWindowDimensions()
const left = index * winDim.width * -1
return (
<View style={[styles.container, {left}]}>
{uris.map((uri, i) => (
<Image
key={i}
style={[styles.image, {left: i * winDim.width}]}
source={{uri}}
/>
))}
</View>
)
}
const styles = StyleSheet.create({
container: {
position: 'absolute',
top: 0,
left: 0,
width: '100%',
},
image: {
position: 'absolute',
top: 200,
left: 0,
resizeMode: 'contain',
width: '100%',
aspectRatio: 1,
},
})