ResponsiveColumn

@Composable
inline fun ResponsiveColumn(    modifier: Modifier = Modifier,     config: ResponsiveConfig.Vertical = ResponsiveConfig.init(),     layoutHeight: Dp = LocalConfiguration.current.screenHeightDp.dp,     @IntRange(from = -1) totalRows: Int,     crossinline content: @Composable ResponsiveColumnScope.() -> Unit)

Responsive Column Layout Gird

Follow Material Guideline

Samples

com.nyangzzi.responsive_layout_grid.app_demo.ResponsiveColumnSample

See also

Parameters

modifier

The modifier to be applied to the Row.

config

Set gutter, vertical padding, horizontal padding. Default value is 0.dp

layoutHeight

The height of the column. Default value is screen height.

totalRows

Indicates the sum of weights. This is a required value.