Dropdown Menu/button in Flame Game

101 Views Asked by At

Is there a way to add a dropdown menu in flame? I want to be able to make a dropdown button in specific with values that I can select from in that you can click it and the values show below.

I've tried Flutter's dropdown button, but that is not a flame component.

1

There are 1 best solutions below

2
On BEST ANSWER

For dropdowns I would recommend to use Flutter widgets and add them as overlays to your GameWidget.

Something like this:

GameWidget<OverlaysExample>(
  game: MyGame(),
  overlayBuilderMap: const {
   'dropdown': (BuildContext buildContext, OverlaysExample game) {
     return MyDropDownWidget();
   },
  },
  initialActiveOverlays: const ['dropdown'],
);