Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I create a 3 dot pop-up menu in the Flutter app bar similar to iOS with using a Cupertino package for iOS?

How to make a 3 dot pop-up menu in the app bar in Flutter like ios. I do not want to use a material package cause developing for ios. Image link below

Image here

I have already tried multiple things like 1. CupertinoContextMenu (CupertinoContextMenuAction) only work on long press(tap) and I don't want that. I want it with a single tap on the user. 2. Wrapped it inside a gesture detector but it does not work. 3. Used modal sheet but I don't want it like that. I want just a popup menu

Please tell me if there are any methods to Trigger CupertinoContextMenuAction with a single tap or any different methods that will also help

Thanks.

like image 554
Sagar Choudhary Avatar asked Oct 14 '25 08:10

Sagar Choudhary


1 Answers

Unfortunately, you need to take the code of _ContextMenuRoute and adapt it to your needs.

Or use pull_down_button package

enter image description here

like image 68
Andrey Gordeev Avatar answered Oct 16 '25 21:10

Andrey Gordeev