It is known that native objets (maps, video, textFields,…) are always displayed on top of everything on our Corona screen.
My question to Corona is: Why don’t you allow us to add objects (display, widgets,…) to be above these native objects?
Based on my short experience with Corona Enterprise (android), I understand that all Corona objects are added inside the same view. But the Corona Framework already has a “overlay View” that is above the Corona View.
Why don’t you allows us to choose if we want add our Corona objects to that overlay view? This is simple way to solve a problem that hurts a lot of Pro developers.
Here is an example of how I think it could work:
local myNormalGroup = display.newGroup() -- this is a normal group that we use today on Corona local myOverlayGroup = display.newGroup({addInOverlayView = true}) -- this would add that new group to the overlay view, and so every display objects added to this group would always be on top of the normalGroup above
Looking forward to your feedback on that.