wn-na / react-native-capture-protection

It’s a library for React Native to control simple capture events(i.e. Screenshot or Screen record)
https://www.npmjs.com/package/react-native-capture-protection
MIT License
102 stars 10 forks source link

IOS not working #47

Closed bumjin1013 closed 3 months ago

bumjin1013 commented 3 months ago

rn - 0.74.3 ios - 16.6.1 react-native-capture-protection - latest android works well

useEffect(() => {
    if (isFocused) {
      CaptureProtection.preventScreenRecord()
    }
    else {
      CaptureProtection.allowScreenRecord()
    }
  }, [isFocused]);