ResponsiveRow

@Composable
inline fun ResponsiveRow(    modifier: Modifier = Modifier,     config: ResponsiveConfig.Horizontal = ResponsiveConfig.init(),     layoutWidth: Dp = LocalConfiguration.current.screenWidthDp.dp,     @IntRange(from = -1) totalColumns: Int = RESPONSIVE_AUTO,     crossinline content: @Composable ResponsiveRowScope.() -> Unit)

Responsive Row Layout Gird

Follow Material Guideline

Samples

com.nyangzzi.responsive_layout_grid.app_demo.ResponsiveRowSample

See also

Parameters

modifier

The modifier to be applied to the Row.

config

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

layoutWidth

The width of the row. Default value is screen width.

totalColumns

Indicates the sum of weights. If you do not enter this value, it is automatically assigned according to the guidelines.