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 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-turbo-image-picker

v1.1.77

Published

High-performance Telegram-like image gallery picker for React Native with Turbo Module

Readme

React Native Turbo Image Picker 🚀

A highly customizable, high-performance, and purely native image picker and editor for React Native.

✨ Features

  • Pure Native UI: Built with native iOS and Android for the fastest and smoothest performance.
  • Built-in Editor & Viewer: Includes an integrated image editor (cropping, filtering) and a highly optimized image viewer.
  • Smooth Animations: Carefully crafted interactions for a premium user experience (e.g., iOS-like smooth thumbnail centering).
  • Customizable: Easily configure theme colors, maximum selection limits, and more.
  • New Architecture Ready: Fully supports React Native's New Architecture (Turbo Modules).

🎥 Demo

Android

| Editor | Mosaic | Multi-Select | |:---:|:---:|:---:| | Android Editor | Android Mosaic | Android Multi |

iOS

| Editor | Mosaic | Multi-Select | |:---:|:---:|:---:| | iOS Editor | iOS Mosaic | iOS Multi |


📦 Installation

# using yarn
yarn add react-native-turbo-image-picker

# or using npm
npm install react-native-turbo-image-picker

If you are using iOS, run pod install:

cd ios && pod install

iOS Permissions (Info.plist)

You must add the following permissions to your ios/YourAppName/Info.plist file, otherwise your app will crash when trying to access the camera or photo library.

<key>NSCameraUsageDescription</key>
<string>We need access to your camera to take photos and videos.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>We need access to your photo library to select images.</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>We need access to save edited photos to your library.</string>

🛠 Usage Example

import RNTurboImagePicker from 'react-native-turbo-image-picker';

// Step 1: Initialize the module (usually in App.tsx or index.js)
// Pass your license key (if you have one to remove the watermark) and default configurations
RNTurboImagePicker.init("", { 
  languageCode: 'en', 
  themeColor: '#ff0000' 
}).catch(console.error);

// Step 2: Open Image Picker
const handleOpenPicker = async () => {
  try {
    const result = await RNTurboImagePicker.openGallery({
      maxSelection: 10,
      themeColor: '#FF6B35',
      enableEditor: true,
      profileMode: false,
    });
    console.log('Selected Images:', result);
  } catch (error) {
    console.error(error);
  }
};

📖 API Reference

RNTurboImagePicker.openGallery(options?: GalleryOptions): Promise<ImageResult[]>

Opens the native image gallery for selecting photos and videos.

GalleryOptions (Key Properties):

  • maxSelection (number): Maximum number of images a user can select.
  • maxWidth / maxHeight (number): Maximum dimensions to scale the image.
  • mediaType ("photo" | "video" | "all"): Type of media to show.
  • quality (number): Compression quality (0 to 1).
  • enableEditor (boolean): If true, opens the image editor after a single image selection.
  • profileMode (boolean): If true, enables a 1:1 circular crop mode for profile pictures.
  • themeColor (string): The primary hex color for the UI (e.g., "#FFEB3B").
  • autoCloseOnSelect (boolean): Close picker automatically on single selection.
  • Also includes various text overrides for localization (e.g., doneButtonText, languageCode).

RNTurboImagePicker.openEditor(options: EditorOptions): Promise<ImageResult>

Directly opens the built-in image editor for a specific image.

EditorOptions:

  • uri (string): The URI of the image to edit.
  • editedFileUri (string, optional): Path to a previously edited version.
  • themeColor (string): UI theme color.
  • maxWidth / maxHeight (number): Maximum bounds for the edited image.

RNTurboImagePicker.openViewer(options: ViewerOptions): Promise<void>

Opens a high-performance, full-screen image viewer with smooth swiping, thumbnail navigation, and pinch-to-zoom capabilities.

ViewerOptions:

  • images (string[]): Array of image URIs to view.
  • initialIndex (number): The starting index.
  • themeColor (string): UI theme color.

ImageResult (Returned Object)

When an image is selected or edited, the promise resolves to an array of ImageResult objects containing:

  • originalUri / uri: The original and resized/edited file URIs.
  • originalWidth / width: Dimensions of the image.
  • type, fileName, fileExtension, fileSize: Meta information.

📜 License & Contact

This RNTurboImagePicker library is released under the MIT License. However, to remove the watermark from the image editor, a separate license purchase is required.

🛒 Purchase License: https://license.rnturboimagepicker.usomnia.co.kr

📧 Contact: [email protected]