---
title: "sensitiveContent"
description: "This modifier hints that the composable renders sensitive content (i.e. username, password,
credit card etc) on the screen, and the content should be protected during screen share in
supported environments."
type: "modifier"
---

<div class='type'>Compose Modifier</div>

<a id='references'></a>
<div class='sourceset sourceset-common'>Common</div>


```kotlin
fun Modifier.sensitiveContent(isContentSensitive: Boolean = true): Modifier
```


This modifier hints that the composable renders sensitive content (i.e. username, password,
credit card etc) on the screen, and the content should be protected during screen share in
supported environments.

#### Parameters

| | |
| --- | --- |
| isContentSensitive | whether the content is sensitive or not. Defaults to true. |




