public fun RichText()

in richtext-ui-material/src/commonMain/kotlin/com/halilibo/richtext/ui/material/RichText.kt [23:35]


public fun RichText(
  modifier: Modifier = Modifier,
  style: RichTextStyle? = null,
  children: @Composable RichTextScope.() -> Unit
) {
  RichTextMaterialTheme {
    BasicRichText(
      modifier = modifier,
      style = style,
      children = children
    )
  }
}