---
title: "wrappedContent"
type: "property"
lastmod: "2026-08-27"
---
## API Reference

> Source set: Common

```kotlin
val wrappedContent: (@Composable () -> Unit)? =
        if (showContent) {
            {
                Column(Modifier.graphicsLayer { alpha = animationProgress.value }) {
                    HorizontalDivider(color = colors.dividerColor)
                    CompositionLocalProvider(
                        LocalContentColor provides contentColorFor(colors.containerColor)
                    ) {
                        content()
                    }
                }
            }
        } else null
```
