[quote author="sierdzio" date="1377248767"]So, the Back button is a child of the page that is loaded inside the Loader?
You can send a signal to your main view to notify it that the page needs to be closed. This is a clean and flexible solution, allowing you to react nicely in the main view, and it will be easy to extend later. Passing singals to and from Loaders is described in the documentation.
Other possibility would be to clean "source" from inside your child page: you can get to Loader using parent-child hierarchy:
@
Loader {
source: "kid.qml"
}
// kid:
Item {
id: root
YourButton {
onClicked: root.parent.source = ""; // or root.parent.parent.source = ""
}
}
@
I won't say it's a good solution, though.[/quote]
i'll try it ...and really very thank u because u r so enthusiastic! and wanna communicate more :)