Warning, /sdk/rust-qt-binding-generator/templates/qt_quick_cargo/main.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2.6
0002 import QtQuick.Window 2.2
0003
0004 Window {
0005 visible: true
0006 width: 640
0007 height: 480
0008 title: qsTr("Hello World")
0009
0010 MainForm {
0011 anchors.fill: parent
0012 mouseArea.onClicked: {
0013 console.log(qsTr('Clicked on background. Text: "' + textEdit.text + '"'))
0014 }
0015 }
0016 }