INNER CODE UNIT · Kotlin
result
IacobIonut01/ReFra · commonMain/androidx/compose/foundation/layout/Grid.kt:687
result = 31 * result + alignment.hashCode()
return result
}
}
/**
* The modifier node that provides parent data to the [Grid] layout.
*
* This class implements [ParentDataModifierNode], allowing the parent [Grid] layout to inspect the
* configuration (row, column, spans) of this specific child during the measurement phase via the
* [modifyParentData] method.
*
* @property row The 1-based row index, or [GridScope.GridIndexUnspecified] for auto-placement.
* @property column The 1-based column index, or [GridScope.GridIndexUnspecified] for
* auto-placement.
* @property rowSpan The number of rows the item should occupy.
* @property columnSpan The number of columns the item should occupy.
* @property alignment The alignment of the content within the grid cell.