mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1// default implementation fallback for web
2
3import React from 'react'
4import {View} from 'react-native'
5import {ImageSource} from '../../@types'
6
7type Props = {
8 imageSrc: ImageSource
9 onRequestClose: () => void
10 onZoom: (scaled: boolean) => void
11 onLongPress: (image: ImageSource) => void
12 delayLongPress: number
13 swipeToCloseEnabled?: boolean
14 doubleTapToZoomEnabled?: boolean
15}
16
17const ImageItem = (_props: Props) => {
18 return <View />
19}
20
21export default React.memo(ImageItem)