Hello,
I ve found many information how to pass parameter between to different qml pages which are in different qml files but I cannot figure out how to retrieve passed parameter.
I am using this code to open page and pass parameter:
How to retrieve parameter: param in opened page?Code:function loadPage(file, param) { var component = Qt.createComponent(file) if (component.status === Component.Ready) { if (param !== "") pageStack.push(component, {parameter: param}); else pageStack.push(component); } else console.log("Error loading: " + component.errorString()); }




