How to load leveled qml file into main qml?
Unsolved
QML and Qt Quick
-
@NTMS
did i understand you correctly that you want to show theMapWidget
component as overlay on top of all the other elements?
Since you are using ApplicationWindow already you can use the attached propertiesApplicationWindow.contentItem
orOverlay.overlay
as the parent of the itemAlso note that in your code the
Loader
item is stacked behindMainPageBG
element -
@raven-worx thanks. my loader item is not stacked behind any other element. And its working.