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

decoratedPlaceholder

Source set: Common
val decoratedPlaceholder: @Composable ((Modifier) -> Unit)? =
        if (placeholder != null && visualText.isEmpty() && showPlaceholder) {
            @Composable { modifier ->
                Box(modifier) {
                    Decoration(
                        contentColor = placeholderColor,
                        textStyle = bodyLarge,
                        content = placeholder,
                    )
                }
            }
        } else null

Content updated: