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

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

The newest version!
package com.huanshankeji.compose.material.ext

import androidx.compose.runtime.Composable
import com.huanshankeji.compose.ui.Modifier

@Composable
expect fun Button(
    onClick: () -> Unit,
    buttonType: ButtonType = ButtonType.Contained,
    modifier: Modifier = Modifier,
    content: @Composable ButtonScope.() -> Unit
)

expect /*value*/ class ButtonScope {
    @Composable
    fun Label(text: String)
}

enum class ButtonType {
    Contained, Outlined, Text
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy