Created
May 10, 2022 19:54
-
-
Save linean/9a66dc98c6c0877b16c3ba8b7145ce9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
items.forEach { item -> | |
val offset = itemsOffsets.getValue(itemKey(item)).value | |
Box( | |
modifier = Modifier | |
.size(itemSize) | |
.offset(offset.x, offset.y) | |
) { | |
itemContent(item) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment