INNER CODE UNIT · Kotlin

result

IacobIonut01/ReFra · commonMain/androidx/compose/foundation/layout/Grid.kt:684

        result = 31 * result + column
        result = 31 * result + rowSpan
        result = 31 * result + columnSpan
        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.

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…