Package-level declarations
Types
Functions
Link copied to clipboard
expect fun Column(modifier: Modifier = Modifier, verticalArrangement: Arrangement.Vertical = Arrangement.Top, horizontalAlignment: Alignment.Horizontal = Alignment.Start, content: @Composable ColumnScope.() -> Unit)
actual fun Column(modifier: Modifier, verticalArrangement: Arrangement.Vertical, horizontalAlignment: Alignment.Horizontal, content: ColumnScope.() -> Unit)
actual fun Column(modifier: Modifier, verticalArrangement: Arrangement.Vertical, horizontalAlignment: Alignment.Horizontal, content: ColumnScope.() -> Unit)
Link copied to clipboard
expect fun Modifier.fillMaxHeight(@FloatRange(from = 0.0, to = 1.0) fraction: Float = 1.0f): Modifier
Link copied to clipboard
Link copied to clipboard
expect fun Modifier.fillMaxWidth(@FloatRange(from = 0.0, to = 1.0) fraction: Float = 1.0f): Modifier
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Padding works differently on Compose UI and CSS. In Compose UI, the padding modifier adds a layer of wrapper around the component, and order of modifiers matters; while in CSS, this function delegates to the margin CSS properties.
expect fun Modifier.padding(start: Dp = 0.dp, top: Dp = 0.dp, end: Dp = 0.dp, bottom: Dp = 0.dp): Modifier
See the KDoc of the overload with one Dp parameter for platform differences.
Link copied to clipboard
expect fun PaddingValues(start: Dp = 0.dp, top: Dp = 0.dp, end: Dp = 0.dp, bottom: Dp = 0.dp): PaddingValues
Link copied to clipboard
expect fun Row(modifier: Modifier = Modifier, horizontalArrangement: Arrangement.Horizontal = Arrangement.Start, verticalAlignment: Alignment.Vertical = Alignment.Top, content: @Composable RowScope.() -> Unit)
actual fun Row(modifier: Modifier, horizontalArrangement: Arrangement.Horizontal, verticalAlignment: Alignment.Vertical, content: RowScope.() -> Unit)
actual fun Row(modifier: Modifier, horizontalArrangement: Arrangement.Horizontal, verticalAlignment: Alignment.Vertical, content: RowScope.() -> Unit)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun @Composable ColumnScope.() -> Unit.toCommonColumnScopeContent(): @Composable PlatformColumnScope.() -> Unit
Link copied to clipboard
Link copied to clipboard
fun @Composable RowScope.() -> Unit.toPlatformRowScopeContent(): @Composable PlatformRowScope.() -> Unit
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard