skip to Main Content

Visual Studio Code – QML plugin with static build

I have Qt compiled static, but when I run my application I get this error: qrc:/files/particles/particles.qml:2:1: module "QtQuick.Particles" plugin "particlesplugin" not found       import QtQuick.Particles 2.0       ^ My imports related to QML are these: import QtQuick 2.5 import…

VIEW QUESTION

Making use of json data inside QML

I'm trying to replace a text in my .qml file with a json data. In my .qml file I have the following: Text { **text: qsTr("J1-25")** anchors.right: tc1.left anchors.rightMargin: 20 anchors.verticalCenter: tc1.verticalCenter color: "white" font.pointSize: 10 } I created the…

VIEW QUESTION
Back To Top
Search