I don't found my answer in my issue , so i would like to explain.
I have some QML pages, i manage my pages with a StackView object and i would like to call a function that is at page 1 from page 2 ... For example
//Page 1
Item{
id: page1
function test(){
console.debug("Page 1 man ! ");
}
... something
}
}
I would like to call a test function that is on page 1
//Page 2
Item{
id: page2
Compoment.onCompleted: page1.test();
... something
}
}
Anyone have a solution ?
yekmen