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-private-screen

v0.1.0

Published

React Native privacy toolkit with Android capture protection and Samsung Privacy Display guidance hooks.

Readme

react-native-private-screen

React Native privacy toolkit for Android with a fast-track API focused on:

  • Screen capture blocking (FLAG_SECURE)
  • Best-effort content sensitivity (View.setContentSensitivity(...) where available)
  • Samsung Privacy Display support detection and Settings guidance (no third-party Samsung toggle API assumed)

Why This Project Exists

Samsung Privacy Display on Galaxy S26 Ultra is a hardware privacy feature, but there is no documented public third-party API (yet) for apps to toggle it programmatically.

This project exists to provide immediate value now:

  • expose Android privacy protections apps can use today (FLAG_SECURE, best-effort content sensitivity)
  • give apps a clean Samsung-specific integration path (support detection + Settings guidance)
  • preserve a stable API surface that can later grow into official Samsung Privacy Display controls if Samsung publishes supported APIs

Scope

This library intentionally separates different privacy controls:

  • FLAG_SECURE: blocks screenshots and non-secure displays/casting at the window level
  • setContentSensitivity: best-effort selective screen-sharing privacy on newer Android versions
  • Samsung Privacy Display: hardware shoulder-surfing/privacy-angle feature on supported Samsung devices, exposed here only as support detection + Settings navigation until Samsung documents a public app API

Install

npm install react-native-private-screen

Rebuild your Android app after installation.

Usage

import React, { useEffect } from 'react';
import { Button, Text, View } from 'react-native';
import { PrivateScreen } from 'react-native-private-screen';

export function SensitiveScreen() {
  useEffect(() => {
    void PrivateScreen.setScreenCaptureProtection('flagSecureOnDemand');
    void PrivateScreen.setContentSensitivity('sensitive');

    return () => {
      void PrivateScreen.setScreenCaptureProtection('off');
      void PrivateScreen.setContentSensitivity('notSensitive');
    };
  }, []);

  return (
    <View>
      <Text>Sensitive content</Text>
      <Button
        title="Open Samsung display privacy settings"
        onPress={() => {
          void PrivateScreen.openSamsungPrivacyDisplaySettings();
        }}
      />
    </View>
  );
}

API

PrivateScreen.setScreenCaptureProtection(mode)

Modes:

  • 'off'
  • 'flagSecure'
  • 'flagSecureOnDemand'

PrivateScreen.setContentSensitivity(mode)

Modes:

  • 'notSensitive'
  • 'sensitive'
  • 'auto'

On Android versions/builds without setContentSensitivity, this call is a no-op.

PrivateScreen.getSamsungPrivacyDisplaySupport()

Returns:

  • { availability: { status: 'unavailable', reason: '...' } } on non-Samsung/non-Android
  • { availability: { status: 'unknown', reason: 'No public app API...' } } on Samsung devices

PrivateScreen.openSamsungPrivacyDisplaySettings()

Best-effort navigation to Android settings screens (Display, app details, or general Settings) so users can enable Samsung Privacy Display manually when supported by their device/firmware.

Notes

  • This library does not claim to programmatically toggle Samsung Privacy Display.
  • Samsung-specific programmatic controls should be added only after an official public API/intent contract is documented and verified on hardware.