A Native library for blocking screenshot for react-native developer, with background color screenshot customizable.
https://github.com/gbumps/react-native-screenguard/assets/16846439/50b64c82-c93d-4dbd-8262-3ad918841577
Get started
Installation
- Install the dependency
$ npm install react-native-screenguard --save
$ yarn add react-native-screenguard
- Linking:
-
React-native 0.60 and higher: just cd ios && pod install
, no additional requirements.
-
React-native 0.59 and lower: Please do manual installation as follow
iOS
-
In XCode, in the project navigator, right click Libraries
➜ Add Files to [your project's name]
-
Go to node_modules
➜ react-native-screenguard
and add ScreenGuard.xcodeproj
-
In XCode, in the project navigator, select your project. Add libScreenguard.a
to your project's Build Phases
➜ Link Binary With Libraries
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
-
Append the following lines to android/settings.gradle
:
include ':react-native-screenguard'
project(':react-native-screenguard').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-screenguard/android')
-
Insert the following lines inside the dependencies block in android/app/build.gradle
:
compile project(':react-native-screenguard')
For Expo user: First, you need to eject Expo or npx expo prebuild
in order to use this library, check Expo docs below:
https://docs.expo.dev/workflow/prebuild/
Usage
(iOS + Android) Activate the screenguard
import ScreenGuard from 'react-native-screenguard';
ScreenGuardModule.register(null, (_) => {
.....do anything you want after the screenshot
});
(iOS only) Activate the screenguard with your custom background color layout, received after taking the screenshot.
import ScreenGuard from 'react-native-screenguard';
ScreenGuardModule.register(
'#0F9D58',
(_) => {
.....do anything you want after the screenshot
});
https://github.com/gbumps/react-native-screenguard/assets/16846439/fd4b3662-6e3b-4428-a927-23ee2068c22a
Deactivate the screenguard
ScreenGuardModule.unregister();
Limitation
This library support blocking view from being screenshoted for iOS 13+ only.
Background color for the layout received after screenshoted and event callback after screenshot supports for iOS only.
Contributing
All contributions are welcome! Please open an issue if you get stuck and bugs, or a PR if you have any feature idea, improvements and bug fixing. I'm very appreciate !
License
MIT