1

We have a screen with listItems. Each item can be longPressed to open a popupMenu. Now requirement is to blur the screen except the selected listItem on long press. (check screenshot)

list with popupMenu

How can this be achieved?

AngryBug
  • 86
  • 7
  • Take a look at this answer on [make frosted glass effect](https://stackoverflow.com/questions/43550853/how-do-i-do-the-frosted-glass-effect-in-flutter),maybe it help – Jesus Hernandez Barrios Aug 04 '21 at 12:41

1 Answers1

5

I think you are looking for something like this one. https://pub.dev/packages/focused_menu

Using this library you can show the popup menu by making the background blurry without the tapped item.

sajalsd
  • 349
  • 1
  • 5