How to add blur effect to a lazy column on Android versions lower than 12?

107 Views Asked by At

This works perfectly on Android versions 12+

LazyColumn(modifier = Modifier
           .testTag(TestTag)
           .fillMaxSize()
           .blur(blurredBackground)

I tried Cloudy library but it doesn't work so well. I'm making TV app

0

There are 0 best solutions below