posthog-android
posthog-android copied to clipboard
Masking and redacting Jetpack Compose views
Description
See note https://posthog.com/docs/session-replay/android
Maybe possible to use the https://developer.android.com/develop/ui/compose/modifiers
modifier = Modifier .postHog( isSensitive = true ) or something similar
Similar for SwiftUI modifiers.
Or a view wrapper:
PostHogMaskView {
Button(
...
) {
Text(
...
)
}
}