Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Start animation when app loaded [solved]
-
How can I start an animation when a app is first run. I can start animations with a mousearea or onClicked but I can't get an animation to run when I first launch the app
-
Check "Qt Quick examples - window"
-
You can use:
@
Component.onCompleted: {
animation.start()
}
@
-
You rule portoist