0
votes

I'm new to Qt/QML/Qt Quick.

I have Qt 5.14 and QtCreator installed and am attempting to build a sample application.

Currently I have QtQuick 2.12 installed (which came with the QtCreator installation).

How/where do I get the latest version of the QtQuick2 libraries and make them accessible to QtCreator?

What is the latest version of QtQuick2?

1

1 Answers

0
votes

Change import QtQuick 2.12 to import QtQuick 2.14.


TL; DR;

Before responding you should know the following:

  • If you have Qt 5.14 then you must have the most up-to-date components of Qt (stable version).

  • When you create your project Qt Creator will choose the version of the components depending on the configuration you set in the wizard, but you can change it manually: import QtQuick 2.14.

As the last stable version points out is Qt 5.14 that contains all the most up-to-date stable components, if you want to use the components of a developing version such as Qt 5.15 then you must download the source code and compile it which can be complicated if you are a beginner.