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

expo-privacy-image

v1.0.5

Published

Overlays a privacy image on the screen when the app goes to the background.

Readme

expo-privacy-image

A React Native package that overlays a privacy image on the screen whenever the app goes to the background, preventing sensitive content from appearing in the app switcher (iOS) or recent apps (Android).

Built with Expo Modules.


Platform support

| Android | iOS | | ------- | --- | | ✅ | ✅ |


Installation

Bare React Native:

Ensure expo-modules is installed before proceeding, then run the command below.

Expo:

npx expo install expo-privacy-image

Setup

Image format: Only PNG is supported.

Expo managed

Add the plugin to your app.config.ts (or app.json) and point it at your privacy image:

// app.config.ts
export default {
  plugins: [
    [
      "expo-privacy-image",
      {
        imagePath: "./assets/images/privacy.png",
      },
    ],
  ],
};

Then run prebuild to apply the native changes:

npx expo prebuild

The plugin automatically:

  • Android: copies the image to android/app/src/main/res/drawable/privacy_image.png
  • iOS: adds the image as PrivacyImage.imageset inside Images.xcassets

Bare React Native (manual setup)

Android

Copy your privacy image to:

android/app/src/main/res/drawable/privacy_image.png

iOS

Create the imageset directory and add your image:

ios/<ProjectName>/Images.xcassets/PrivacyImage.imageset/
  privacy_image.png
  Contents.json

Contents.json should contain:

{
  "images": [
    { 
      "idiom": "universal",
      "filename": "privacy_image.png",
      "scale": "1x"
    }
  ],
  "info": { "version": 1, "author": "xcode" }
}

Then run:

npx pod-install

Usage

Call usePrivacyImage() once, typically at the root of your app or inside a top-level component. Once called, the module is permanently enabled for the lifetime of the app session.

import { usePrivacyImage } from "expo-privacy-image";

export default function App() {
  usePrivacyImage();

  return (
    // ...
  );
}

When the app moves to the background, the image you configured is shown as a full-screen overlay. It is removed automatically when the app returns to the foreground.


API

usePrivacyImage(): void

Enables the privacy overlay for the current app session. Safe to call multiple times, subsequent calls are no-ops.

| Parameter | Type | Description | | --------- | ---- | ----------- | | — | — | No parameters |


Requirements

  • React Native ≥ 0.71
  • expo
  • iOS ≥ 15.1