-
-
Notifications
You must be signed in to change notification settings - Fork 128
Open
Labels
bugSomething isn't workingSomething isn't working
Description
```GlideImage(modifier = Modifier.fillMaxWidth(),
imageModel = { newKids.imgUrl },
component = rememberImageComponent {
+ShimmerPlugin(
shimmer = com.skydoves.landscapist.placeholder.shimmer.Shimmer.Flash(
baseColor = Color.DarkGray,
highlightColor = Color.LightGray,
)
)
+CircularRevealPlugin(duration = 800)
}, imageOptions = ImageOptions(contentScale = ContentScale.FillBounds, alignment = Alignment.Center),
failure = {
Image(painter = painterResource(id = R.drawable.logo), contentDescription = null, modifier = Modifier.fillMaxSize().background(Color.Transparent), contentScale = ContentScale.Crop)
})```
here is used "CircularRevealPlugin" Now by default the content scale acts as crop even if I specified Fillbounds, if I remove the animation contentScale fillbounds works as expected
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working