add vlayout node & stack node

This commit is contained in:
王劲鹏
2021-02-23 14:28:08 +08:00
committed by osborn
parent 1c574f030c
commit a38b998b60
14 changed files with 402 additions and 20 deletions

View File

@@ -0,0 +1,15 @@
import QtQuick 2.12
import QtQuick.Controls 2.5
Row {
Rectangle {
width: 50
height: 50
color: "blue"
}
Rectangle {
width: 50
height: 50
color: "green"
}
}