Skip to content

Commit 140b8e8

Browse files
committed
chore: disable visualTouchFeedbackEnabled
1 parent 2a9f40a commit 140b8e8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/uikit-react-native/src/components/FileViewer/FileViewerContent.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,13 @@ const ZoomableImageView = ({
117117
}, [props.source.uri, width, height]);
118118

119119
return (
120-
<ReactNativeZoomableView style={{ width, height }} initialZoom={1} {...contentSizeProps} {...zoomProps}>
120+
<ReactNativeZoomableView
121+
visualTouchFeedbackEnabled={false}
122+
style={{ width, height }}
123+
initialZoom={1}
124+
{...contentSizeProps}
125+
{...zoomProps}
126+
>
121127
<Image {...props} />
122128
</ReactNativeZoomableView>
123129
);

0 commit comments

Comments
 (0)