Ashish Kumar
Ashish Kumar

Reputation: 41

Is there any way to prevent screenshot in React Native IOS version 0.63?

Is it possible to disable screenshots in React Native app for a specific page in IOS?

I have already used the RN AppState feature to hide the content when the App is inactive or in the background state but this feature does not seem to work to prevent screenshots.

Any help would be appreciated. Thanks in advance!

Upvotes: 0

Views: 4553

Answers (1)

Jignesh Mayani
Jignesh Mayani

Reputation: 7213

To prevent a user from taking screenshots check out the following npm:

https://github.com/hawkup/react-native-prevent-screenshot-poc

For iOS, we can't force to prevent users from taking screenshots but we can handle this as per the npm documentation.

Upvotes: 0

Related Questions