Search code examples
flutterdartoverlayblurpopupmenu

Flutter - blur the screen except the selected widget


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?


Solution

  • 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.