Details
-
Bug
-
Resolution: Unresolved
-
Not Evaluated
-
None
-
Qt for MCUs 2.4
-
None
Description
doc link : https://doc.qt.io/QtForMCUs-2.4/qml-qtquick-pathmove.html
The document above has a code snippet below:
Path { startX: 0; startY: 100 PathLine { x: 100; y: 100 } PathMove { x: 200; y: 100 } PathLine { x: 300; y: 100 } }
But since this code uses Path, which is invisible, if the reader copies and pastes this code to their Qt Creator and runs the app, it won't draw a line in the Window.
I suggest replacing the current code snippet with this one, with a note saying the reader should link the Qul::Shapes module to their project to import QtQuick.Shapes.
import QtQuick 2.0 import QtQuick.Shapes Rectangle { width: 300 height: 300 Shape { ShapePath { strokeColor: "black" startX: 0; startY: 100 PathLine { x: 100; y: 100 } PathMove { x: 200; y: 100 } PathLine { x: 300; y: 100 } } } }
This code outputs this result: