Reputation: 41
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
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