Anchor layout

Anchor layout
image.png

Item {
        id: item
        anchors.fill: parent
        Rectangle {
            id: rec
            width: 150
            height: 50
            color: "red"
            anchors.centerIn: parent
        }

        Button {
            anchors.top: rec.bottom
            anchors.left: rec.left
            anchors.right: rec.right
        }
    }

image.png

Button {
            anchors.horizontalCenter: parent.horizontalCenter
//            anchors.verticalCenter: parent.verticalCenter
        }

image.png

Button {
            anchors.margins: 10
            anchors.fill:parent
        }

image.png

Button {
            anchors.horizontalCenter: parent.horizontalCenter
            anchors.horizontalCenterOffset: -10
        }

FIG omitted Effect

Guess you like

Origin www.cnblogs.com/clear-love/p/11407561.html