I'm trying to use the Modifier.blur feature of Jetpack Compose for a project for work and it seems to not do anything in the preview. I'm using it like this:
Column(modifier = Modifier
.blur(30.dp)) {
// Screen content here
}
The screen content isn't blurred at all. I've even tried applying blur to the individual composables in the box and that also doesn't change the preview. Am I missing something here?