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.
Flutter widgetsโ
ScreebMaskText(child: TextField(...))
ScreebNoCapture(child: SensitiveWidget())
ScreebId('checkout_button', child: ElevatedButton(...))
| Helper | Description |
|---|---|
ScreebMaskText | Masks text content in session replay. |
ScreebNoCapture | Excludes the widget from session replay capture. |
ScreebId | Sets a stable element ID for targeting and replay context. |
Platform viewsโ
For native views rendered through PlatformView, apply the native Android or iOS helper on the underlying view.