Hello World
Last updated
Last updated
To test your installation, we will create a small hello world application. Please, open Qt Creator and create a Qt Quick UI Project ( File ‣ New File or Project ‣ Other Project ‣ Qt Quick UI prototype
) and name the project HelloWorld
.
Qt Creator creates several files for you. The HelloWorld.qmlproject
file is the project file, where the relevant project configuration is stored. This file is managed by Qt Creator, so don’t edit it yourself.
Another file, HelloWorld.qml
, is our application code. Open it and try to understand what the application does before you read on.
The HelloWord.qml
program is written in the QML language. We’ll discuss the QML language more in-depth in the next chapter. QML describes the user interface as a tree of hierarchical elements. In this case, a window of 640 x 480 pixels, with a window title if “Hello World”.
To run the application on your own, press the Run tool on the left side, or select Build > Run from the menu.
In the background, Qt Creator runs qml
and passes your QML document as the first argument. The qml
application parses the document, and launches the user interface. You should see something like this:
Qt 6 works! That means we’re ready to continue.