commonMain.com.huanshankeji.compose.material.ext.Text.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compose-multiplatform-material-jvm Show documentation
Show all versions of compose-multiplatform-material-jvm Show documentation
Material Design component wrappers for Compose Multiplatform (desktop/Android and web)
The newest version!
package com.huanshankeji.compose.material.ext
import androidx.compose.runtime.Composable
import com.huanshankeji.compose.material.Text
import com.huanshankeji.compose.ui.Modifier
/**
* An explicit alias of [Text].
*/
@Composable
inline fun MaterialText(text: String, modifier: Modifier = Modifier) =
Text(text, modifier)
/**
* Delegates to raw inline text without any element on JS / Compose HTML.
* @see com.huanshankeji.compose.foundation.text.ext.InlineBasicText
*/
@Composable
expect fun InlineText(text: String)