Skip to content

Instantly share code, notes, and snippets.

@benlau
Last active December 24, 2015 18:19
Show Gist options
  • Save benlau/b17ff72fce4b67f6d3d5 to your computer and use it in GitHub Desktop.
Save benlau/b17ff72fce4b67f6d3d5 to your computer and use it in GitHub Desktop.
Loader {
id: loader
anchors.fill: parent
asynchronous: true
opacity: 0
focus: true;
sourceComponent: PageStack {
initialPage: YourPage {
onPresented: {
window.visible = true;
loader.opacity = 1;
}
}
}
Behavior on opacity {
NumberAnimation {
duration: 200
easing.type: Easing.OutQuad;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment