npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, πŸ‘‹, I’m Ryan HefnerΒ  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you πŸ™

Β© 2024 – Pkg Stats / Ryan Hefner

@likashefqet/react-native-image-zoom

v3.0.0

Published

A performant zoomable image written in Reanimated v2+ πŸš€

Downloads

33,451

Readme

REACT NATIVE IMAGE ZOOM

npm NPM npm peer dependency version npm peer dependency version npm bundle size npm npms.io (final) GitHub issues

A performant and customizable image zoom component
built with Reanimated v2+ and TypeScript. πŸŒƒ πŸš€

Demo:

React Native Image Zoom

Features

  • Smooth Zooming Gestures: Ensure smooth and responsive zooming functionality, allowing users to easily zoom in and out of images using intuitive pinch and pan gestures.

  • Reset Zoom and Snap Back: The component automatically resets zoom and snaps back to the initial position when the gesture ends.

  • Double Tap to Zoom: Enable a double tap gesture for users to seamlessly zoom in and out of images. When double tap functionality is enabled, the automatic Reset Zoom and Snap Back feature will be disabled, allowing users to maintain their desired zoom level without automatic resets.

  • Single Tap Functionality: Detect and process single tap gestures to trigger specific actions or functionality as needed within the component

  • Customizable Zoom Settings: Utilize minScale, maxScale, and doubleTapScale props for precise control over minimum, maximum, and double tap zoom levels, tailoring the zoom behavior to application requirements

  • Customizable Functionality: Fine-tune the component's behavior with minPanPointers and maxPanPointers props to define the range of pointers necessary for pan gesture detection. Enable or disable features such as panning (isPanEnabled), pinching (isPinchEnabled), single tap handling (isSingleTapEnabled), and double tap zoom (isDoubleTapEnabled) based on specific application needs.

  • Interactive Callbacks: The component provides interactive callbacks such as onInteractionStart, onInteractionEnd, onPinchStart, onPinchEnd, onPanStart, onPanEnd, onSingleTap, onDoubleTap and onResetAnimationEnd that allow you to handle image interactions.

  • Ref Handle: Customize the functionality further by utilizing the exposed reset method. This method allows you to programmatically reset the image zoom as a side effect to another user action or event, in addition to the default double tap and pinch functionalities.

  • Reanimated Compatibility: Compatible with Reanimated v2 & Reanimated v3, providing optimized performance and smoother animations during image manipulations`.

  • TypeScript Support: Developed with TypeScript to enhance codebase maintainability and ensure type safety, reducing potential errors during development and refactoring processes

  • Full React Native Image Props Support: The component supports all React Native Image props, making it easy to integrate with existing code and utilize all the features that React Native Image provides.

Getting Started

To use the ImageZoom component, you first need to install the package via npm or yarn. Run either of the following commands:

npm install @likashefqet/react-native-image-zoom
yarn add @likashefqet/react-native-image-zoom

[!CAUTION]

🚨

Please note that this library is compatible with Reanimated v2 & Reanimated v3 and uses GestureHandler v2.

If you haven't installed Reanimated and Gesture Handler yet, please follow the installation instructions for Reanimated and Gesture Handler.

[!NOTE]

Usage with modals on Android

On Android RNGH does not work by default because modals are not located under React Native Root view in native hierarchy. To fix that, components need to be wrapped with gestureHandlerRootHOC (it's no-op on iOS and web).

Usage

First, import the ImageZoom component from the @likashefqet/react-native-image-zoom library:

import { ImageZoom } from '@likashefqet/react-native-image-zoom';

To use the ImageZoom component, simply pass the uri prop with the URL of the image you want to zoom:

Basic Example

<ImageZoom uri={imageUri} />

Customized Example

<ImageZoom
  ref={imageZoomRef}
  uri={imageUri}
  minScale={0.5}
  maxScale={5}
  doubleTapScale={3}
  minPanPointers={1}
  isSingleTapEnabled
  isDoubleTapEnabled
  onInteractionStart={() => {
    console.log('onInteractionStart');
    onAnimationStart();
  }}
  onInteractionEnd={() => console.log('onInteractionEnd')}
  onPanStart={() => console.log('onPanStart')}
  onPanEnd={() => console.log('onPanEnd')}
  onPinchStart={() => console.log('onPinchStart')}
  onPinchEnd={() => console.log('onPinchEnd')}
  onSingleTap={() => console.log('onSingleTap')}
  onDoubleTap={(zoomType) => {
    console.log('onDoubleTap', zoomType);
    if (zoomType === ZOOM_TYPE.ZOOM_IN) {
      onAnimationStart();
      setTimeout(() => {
        imageZoomRef.current?.reset();
      }, 3000);
    }
  }}
  style={styles.image}
  onResetAnimationEnd={(finished) => {
    onAnimationEnd(finished);
  }}
  resizeMode="cover"
/>

Properties

ImageZoom Props

All React Native Image Props &

| Property | Type | Default | Description | | ------------------ | -------- | ------------------- | ----------------------------------------------------------------------------------------------- | | uri | String | '' (empty string) | The image's URI, which can be overridden by the source prop. | | minScale | Number | 1 | The minimum scale allowed for zooming. | | maxScale | Number | 5 | The maximum scale allowed for zooming. | | doubleTapScale | Number | 3 | The value of the image scale when a double-tap gesture is detected. | | minPanPointers | Number | 2 | The minimum number of pointers required to enable panning. | | maxPanPointers | Number | 2 | The maximum number of pointers required to enable panning. | | isPanEnabled | Boolean | true | Determines whether panning is enabled within the range of the minimum and maximum pan pointers. | | isPinchEnabled | Boolean | true | Determines whether pinching is enabled. | | isSingleTapEnabled | Boolean | false | Enables or disables the single tap feature. | | isDoubleTapEnabled | Boolean | false | Enables or disables the double tap feature. When enabled, this feature prevents automatic reset of the image zoom to its initial position, allowing continuous zooming. To return to the initial position, double tap again or zoom out to a scale level less than 1. | | onInteractionStart | Function | undefined | A callback triggered when the image interaction starts. | | onInteractionEnd | Function | undefined | A callback triggered when the image interaction ends. | | onPinchStart | Function | undefined | A callback triggered when the image pinching starts. | | onPinchEnd | Function | undefined | A callback triggered when the image pinching ends. | | onPanStart | Function | undefined | A callback triggered when the image panning starts. | | onPanEnd | Function | undefined | A callback triggered when the image panning ends. | | onSingleTap | Function | undefined | A callback triggered when a single tap is detected. | | onDoubleTap | Function | undefined | A callback triggered when a double tap gesture is detected. | | onResetAnimationEnd| Function | undefined | A callback triggered upon the completion of the reset animation. It accepts two parameters: finished and values. The finished parameter evaluates to true if all animation values have successfully completed the reset animation; otherwise, it is false, indicating interruption by another gesture or unforeseen circumstances. The values parameter provides additional detailed information for each animation value. |

ImageZoom Ref

| Property | Type | Description | | ------------------ | -------- | ----------------------------------------------------------------------------------------------- | | reset | Function | Resets the image zoom, restoring it to its initial position and scale level. |

Changelog

Please refer to the Releases section on the GitHub repository. Each release includes a detailed list of changes made to the library, including bug fixes, new features, and any breaking changes. We recommend reviewing these changes before updating to a new version of the library to ensure a smooth transition.

Troubleshooting

Not working on android?

Usage with modals on Android

Author

Support

For ongoing maintenance and updates, your support is greatly appreciated

If you need further assistance, feel free to reach out to me by email at @likashefi.

License

The library is licensed under the MIT License.