Last active
September 10, 2022 20:45
-
-
Save zsoltk/7321eaf5cd10b84ea1ee63720943d606 to your computer and use it in GitHub Desktop.
This file contains 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
val cards = Cards( | |
initialItems = listOf( | |
Routing.ProfileCard(0, "Lara"), // Will be top | |
Routing.ProfileCard(1, "Kate"), // Will be bottom | |
Routing.ProfileCard(2, "Brad"), // Queued = 0 | |
Routing.ProfileCard(3, "Megan"), // ...etc. | |
Routing.ProfileCard(4, "Michael"), | |
Routing.ProfileCard(0, "Lara"), | |
Routing.ProfileCard(1, "Kate"), | |
Routing.ProfileCard(2, "Brad"), | |
Routing.ProfileCard(3, "Megan"), | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment