blob: 8d89516252adb9c5fd7fafc68d2a4ed43a4388e9 (
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
31
|
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import Qt5Compat.GraphicalEffects
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
}
}
}
|