Skip to content

bugsee/bugsee-compose

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Bugsee for Jetpack Compose

Protecting views

In addition we support a way to mark your custom sensitive views so they will be hidden from the recorded video. We provide BugseeProtect composable function for this (BugseeProtect.kt).

setContent {
    ...
    val secureContent = @Composable {
        Text(text = "Confidential.")
    }

    BugseeProtect(
        contentToHide = { secureContent() }
    )
    ...
}

Releases

No releases published

Packages

No packages published

Languages