react-native-pinchable icon indicating copy to clipboard operation
react-native-pinchable copied to clipboard

Pinchable not working for video element

Open RoyalBosS-Ayush opened this issue 2 years ago • 2 comments

Sample Code

import Video from 'react-native-video';
import Pinchable from 'react-native-pinchable';

<Pinchable>
            <Video
                        source={{ uri: props.uri }}
                        style={{
                            width: desiredSize.width,
                            height: desiredSize.height,
                            borderRadius: 25
                        }}
                        onLoad={handleVideoLayout}
                        muted={muted}
                        onError={handleError}
                        paused={props.paused}
            />
</Pinchable>

Thankfully it worked for Image & FastImage

RoyalBosS-Ayush avatar Oct 10 '23 06:10 RoyalBosS-Ayush

+1

Bayramito avatar Mar 05 '24 21:03 Bayramito