Features
-
Add Replay Custom Masking for iOS, Android and Web (#4224, #4265, #4272, #4314)
import * as Sentry from '@sentry/react-native'; const Example = () => { return ( <View> <Sentry.Mask> <Text>${"All children of Sentry.Mask will be masked."}</Text> </Sentry.Mask> <Sentry.Unmask> <Text>${"Only direct children of Sentry.Unmask will be unmasked."}</Text> </Sentry.Unmask> </View> ); };