Last active
March 27, 2025 18:04
-
-
Save itsSiddharthGupta/325d0eb1452e04c97ae129fd03aa0909 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
fun Modifier.trackVisibility( | |
thresholdPercentage: Float = 0.5f, | |
onVisibilityChanged: (VisibilityInfo) -> Unit, | |
): Modifier = this then VisibilityTrackerElement(thresholdPercentage, onVisibilityChanged) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment