diff options
author | anatasof wirapraja <anatasof.wirapraja@gmail.com> | 2023-04-06 18:26:12 +0700 |
---|---|---|
committer | anatasof wirapraja <anatasof.wirapraja@gmail.com> | 2023-04-06 18:26:12 +0700 |
commit | 11ab113885d6350ef51f6ad7da1da884177490be (patch) | |
tree | 9bdea352744846cc8ae428c9b821af56b261f091 | |
parent | 2fcd3e709905cbf6e6989fb1563885d711940de7 (diff) |
add ProductDetail.ui.qml
-rw-r--r-- | Shop/ProductDetail.ui.qml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Shop/ProductDetail.ui.qml b/Shop/ProductDetail.ui.qml new file mode 100644 index 0000000..2da364a --- /dev/null +++ b/Shop/ProductDetail.ui.qml @@ -0,0 +1,31 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.15 +import QtGraphicalEffects 1.15 +import Eduport 1.4 +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 + } + } +} |