blob: 383bec9951f5cc73ddbb405f72a50a298159531f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// default implementation fallback for web
import React from 'react'
import {View} from 'react-native'
import {AnimatedRef} from 'react-native-reanimated'
import {ImageSource} from '../../@types'
type Props = {
imageSrc: ImageSource
onRequestClose: () => void
onTap: () => void
onZoom: (scaled: boolean) => void
isScrollViewBeingDragged: boolean
showControls: boolean
safeAreaRef: AnimatedRef<View>
}
const ImageItem = (_props: Props) => {
return <View />
}
export default React.memo(ImageItem)
|