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>
| Helper | Description |
|---|---|
ScreebMaskText | Masks text content in session replay. |
ScreebNoCapture | Excludes the view from session replay capture. |
ScreebId | Sets a stable element ID for targeting and replay context. |