All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.huanshankeji.compose.material.ext.Text.kt Maven / Gradle / Ivy

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)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy