Created
January 25, 2025 16:14
-
-
Save igorescodro/575519eb128f8dba4e02f27b18bbf675 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
@PreviewLightDark | |
@Composable | |
private fun ShimmerablePreview() { | |
ExampleTheme { | |
Column( | |
modifier = Modifier | |
.background(MaterialTheme.colorScheme.surface) | |
.padding(8.dp) | |
) { | |
Text( | |
text = "Keep this to yourself!", | |
color = MaterialTheme.colorScheme.onSurface, | |
modifier = Modifier.shimmerable(enabled = false) | |
) | |
Text( | |
text = "Keep this to yourself!", | |
color = MaterialTheme.colorScheme.onSurface, | |
modifier = Modifier.shimmerable(enabled - true) | |
) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment