Last active
January 25, 2025 16:35
-
-
Save igorescodro/ece71676c8e3ced073a8b774e8ca1f7a 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
@Composable | |
private fun ItemCard( | |
item: ItemData, | |
isLoading: Boolean = false | |
modifier: Modifier = Modifier | |
) { | |
Text( | |
text = item.description, | |
style = MaterialTheme.typography.bodyMedium, | |
modifier = Modifier.shimmerable(enabled = isLoading) | |
) | |
// [...] Remaining Composable code | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment