Package-level declarations

Functions

Link copied to clipboard

Aligns content to the center of the horizontal axis. Used e.g. as a Column's cross-axis alignment.

Link copied to clipboard

Aligns content to the end of the horizontal axis (mirrored under RTL). Used e.g. as a Column's cross-axis alignment.

Link copied to clipboard

Aligns content to the start of the horizontal axis (mirrored under RTL). Used e.g. as a Column's cross-axis alignment.

Link copied to clipboard

Aligns content to the bottom edge, centered horizontally. Used by two-dimensional containers such as Box and AsyncImage.

Link copied to clipboard

Aligns content to the bottom-end corner. Used by two-dimensional containers such as Box and AsyncImage.

Link copied to clipboard

Aligns content to the bottom-start corner. Used by two-dimensional containers such as Box and AsyncImage.

Link copied to clipboard

Aligns content dead center, both axes. Used by two-dimensional containers such as Box and AsyncImage.

Link copied to clipboard

Aligns content to the end edge, centered vertically. Used by two-dimensional containers such as Box and AsyncImage.

Link copied to clipboard

Aligns content to the start edge, centered vertically. Used by two-dimensional containers such as Box and AsyncImage.

Link copied to clipboard

Aligns content to the top edge, centered horizontally. Used by two-dimensional containers such as Box and AsyncImage.

Link copied to clipboard

Aligns content to the top-end corner. Used by two-dimensional containers such as Box and AsyncImage.

Link copied to clipboard

Aligns content to the top-start corner. Used by two-dimensional containers such as Box and AsyncImage.

Link copied to clipboard

Aligns content to the bottom of the vertical axis. Used e.g. as a Row's cross-axis alignment.

Link copied to clipboard

Aligns content to the center of the vertical axis. Used e.g. as a Row's cross-axis alignment.

Link copied to clipboard

Aligns content to the top of the vertical axis. Used e.g. as a Row's cross-axis alignment.

Link copied to clipboard
fun arrangeHorizontallySpacedBy(space: Int, alignment: AlignmentSchema.Horizontal = AlignmentSchema.Horizontal.Start): ArrangementSchema.Horizontal.SpacedBy

Spaces children space dp apart along the horizontal axis, e.g. a Row's arrangement.

Link copied to clipboard

Packs children against the end of the main (horizontal) axis (mirrored under RTL), e.g. a Row's arrangement.

Link copied to clipboard

Packs children against the start of the main (horizontal) axis (mirrored under RTL), e.g. a Row's arrangement.

Link copied to clipboard

Distributes children with equal space around each of them. Usable for both vertical and horizontal arrangements.

Link copied to clipboard

Distributes children with equal space between them, none at the edges. Usable for both vertical and horizontal arrangements.

Link copied to clipboard

Distributes children with equal space between them and at both edges. Usable for both vertical and horizontal arrangements.

Link copied to clipboard

Packs children at the center of the main axis. Usable for both vertical and horizontal arrangements.

Link copied to clipboard
fun arrangeVerticallySpacedBy(space: Int, alignment: AlignmentSchema.Vertical = AlignmentSchema.Vertical.Top): ArrangementSchema.Vertical.SpacedBy

Spaces children space dp apart along the vertical axis, e.g. a Column's arrangement.

Link copied to clipboard

Packs children against the bottom of the main (vertical) axis, e.g. a Column's arrangement.

Link copied to clipboard

Packs children against the top of the main (vertical) axis, e.g. a Column's arrangement.