Skip to content

Instantly share code, notes, and snippets.

@igorescodro
Created January 25, 2025 16:14
Show Gist options
  • Save igorescodro/575519eb128f8dba4e02f27b18bbf675 to your computer and use it in GitHub Desktop.
Save igorescodro/575519eb128f8dba4e02f27b18bbf675 to your computer and use it in GitHub Desktop.
@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