This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/test-layout.qml

36 lines
718 B
QML
Raw Normal View History

import QtQuick 2.0
import QtQuick.Controls 2.5
import QtQuick.Layouts 1.15
ApplicationWindow {
visible: true
width: 450
height: 800
title: qsTr("Scroll")
Rectangle {
color: 'red'
width: childrenRect.width
height: childrenRect.height
2021-03-16 15:20:46 +08:00
ColumnLayout {
spacing: 0
2021-03-16 15:20:46 +08:00
width: 400
Rectangle {
2021-03-16 15:20:46 +08:00
Layout.alignment: Qt.AlignHCenter
width: 100
height: 100
color: 'black'
}
2021-03-16 15:20:46 +08:00
Rectangle {
2021-03-16 15:20:46 +08:00
Layout.alignment: Qt.AlignHCenter
width: 100
height: 100
color: 'yellow'
}
}
}
}