I don't even think this is possible but, what I'm looking for is to allow the showMenu()
popup to go beyond the application window.
Currently, I'm using:
showMenu(
context: context,
items: <PopupMenuEntry>[
PopupMenuItem(
value: 1,
child: Row(
children: const <Widget>[
Icon(Icons.delete),
Text("Delete"),
],
),
)
],
position: RelativeRect.fromLTRB(0, 0,0,0),
);
Simply changing the position field to be below the height bounds of the application window doesn't work for me.
Edit: I do know that it is possible with a C# desktop app where a dropdown popup can go outside the bounds of the application window, so I figured flutter could do this as well.