Package-level declarations

Types

Link copied to clipboard
class CardElevation(defaultElevation: Dp, pressedElevation: Dp, focusedElevation: Dp, hoveredElevation: Dp, draggedElevation: Dp, disabledElevation: Dp)
Link copied to clipboard
data class PreviewLabCardColors(containerColor: Color, contentColor: Color, disabledContainerColor: Color, disabledContentColor: Color)
Link copied to clipboard

Functions

Link copied to clipboard
fun PreviewLabCard(modifier: Modifier = Modifier, shape: Shape = PreviewLabCardDefaults.Shape, colors: PreviewLabCardColors = PreviewLabCardDefaults.cardColors(), elevation: CardElevation = PreviewLabCardDefaults.cardElevation(), border: BorderStroke? = null, content: @Composable ColumnScope.() -> Unit)
fun PreviewLabCard(onClick: () -> Unit, modifier: Modifier = Modifier, enabled: Boolean = true, shape: Shape = PreviewLabCardDefaults.Shape, colors: PreviewLabCardColors = PreviewLabCardDefaults.cardColors(), elevation: CardElevation = PreviewLabCardDefaults.cardElevation(), border: BorderStroke? = null, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, content: @Composable ColumnScope.() -> Unit)
Link copied to clipboard
fun PreviewLabElevatedCard(modifier: Modifier = Modifier, shape: Shape = PreviewLabCardDefaults.ElevatedShape, colors: PreviewLabCardColors = PreviewLabCardDefaults.elevatedCardColors(), elevation: CardElevation = PreviewLabCardDefaults.elevatedCardElevation(), content: @Composable ColumnScope.() -> Unit)
fun PreviewLabElevatedCard(onClick: () -> Unit, modifier: Modifier = Modifier, enabled: Boolean = true, shape: Shape = PreviewLabCardDefaults.ElevatedShape, colors: PreviewLabCardColors = PreviewLabCardDefaults.elevatedCardColors(), elevation: CardElevation = PreviewLabCardDefaults.elevatedCardElevation(), interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, content: @Composable ColumnScope.() -> Unit)
Link copied to clipboard
fun PreviewLabOutlinedCard(modifier: Modifier = Modifier, shape: Shape = PreviewLabCardDefaults.OutlinedShape, colors: PreviewLabCardColors = PreviewLabCardDefaults.outlinedCardColors(), elevation: CardElevation = PreviewLabCardDefaults.outlinedCardElevation(), border: BorderStroke = PreviewLabCardDefaults.outlinedCardBorder(), content: @Composable ColumnScope.() -> Unit)
fun PreviewLabOutlinedCard(onClick: () -> Unit, modifier: Modifier = Modifier, enabled: Boolean = true, shape: Shape = PreviewLabCardDefaults.OutlinedShape, colors: PreviewLabCardColors = PreviewLabCardDefaults.outlinedCardColors(), elevation: CardElevation = PreviewLabCardDefaults.outlinedCardElevation(), border: BorderStroke = PreviewLabCardDefaults.outlinedCardBorder(), interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, content: @Composable ColumnScope.() -> Unit)