🌈 Create new beautiful Compose Gradients with our new wesite ->
Property

wrappedContent

Source set: Common
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

Content updated: