qt5-cadaques icon indicating copy to clipboard operation
qt5-cadaques copied to clipboard

"id: row" should be "id: column"

Open william-bt opened this issue 11 years ago • 0 comments

back-link: ch04/index.html#positioning-elements

// column.qml

import QtQuick 2.0

DarkSquare { id: root width: 120 height: 240

Column {
    id: row
    anchors.centerIn: parent
    spacing: 8
    RedSquare { }
    GreenSquare { width: 96 }
    BlueSquare { }
}

}

// M1<<

william-bt avatar Feb 06 '14 02:02 william-bt