Last active
April 6, 2025 19:38
-
-
Save zsoltk/c73503ff8988e5f411561dbeeae29a39 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
// Scaled down to 0% (not visible) | |
private val queued = Props( | |
scale = 0f, | |
) | |
// Scaled down to 85% | |
private val bottom = Props( | |
scale = 0.85f, | |
) | |
// Scale 100% | |
// Should also be rendered above the bottom card (zIndex) | |
private val top = Props( | |
scale = 1f, | |
zIndex = 1f, | |
) | |
// Should be off the screen with offset and rotation | |
// + should be rendered above the next top card | |
private val votePass = Props( | |
offsetX = (-(1500).dp, | |
rotationZ = -270f, | |
zIndex = 2f, | |
) | |
// Should fly off the screen with offset and rotation | |
// + should be rendered above the next top card | |
private val voteLike = Props( | |
offsetX = 1500.dp, | |
rotationZ = 270f, | |
zIndex = 2f, | |
) |
I've never used dating sites before and I want to try it for the first time.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well, by the way, it's not a bad option.