blob: c232303b1eeb998a16e322e9212c60d68c832dcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import Eduport
import "ProductDetail"
Item {
GridLayout {
anchors.fill: parent
LeftSidebar {
id: leftSidebar
Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
Layout.rightMargin: 20
Layout.leftMargin: 20
Layout.topMargin: 20
Layout.fillWidth: true
Layout.maximumWidth: 500
}
RightSidebar {
id: rightSidebar
Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
Layout.margins: 16
Layout.maximumWidth: 830
Layout.minimumWidth: 470
Layout.fillWidth: false
}
}
}
|