Skip to main content
Version: Flutter 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.

Flutter widgetsโ€‹

ScreebMaskText(child: TextField(...))

ScreebNoCapture(child: SensitiveWidget())

ScreebId('checkout_button', child: ElevatedButton(...))
HelperDescription
ScreebMaskTextMasks text content in session replay.
ScreebNoCaptureExcludes the widget from session replay capture.
ScreebIdSets 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.