Skip to main content
Version: React Native SDK

Privacy helpers

Privacy helpers control how specific UI elements appear in session replay.

Screeb automatically masks password inputs and sensitive fields. Use helpers when your app displays custom sensitive content.

import { ScreebId, ScreebMaskText, ScreebNoCapture } from "@screeb/react-native";

<ScreebMaskText>
<TextInput />
</ScreebMaskText>

<ScreebNoCapture>
<SensitiveView />
</ScreebNoCapture>

<ScreebId id="checkout_button">
<Button title="Checkout" />
</ScreebId>
HelperDescription
ScreebMaskTextMasks text content in session replay.
ScreebNoCaptureExcludes the view from session replay capture.
ScreebIdSets a stable element ID for targeting and replay context.