blob: 5dd7c7cb60349829b4dac298f6b78e1cd5596f89 (
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
32
33
34
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
Rectangle {
property alias cartView: cart
property alias accountView: account
color: "#121212"
border.color: "#00000000"
ListView {
id: cart
height: 120
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
anchors.rightMargin: 16
anchors.leftMargin: 16
anchors.topMargin: 16
spacing: 8
ScrollBar.horizontal: ScrollBar {}
}
AccountForm {
id: account
anchors.left: parent.left
anchors.right: parent.right
anchors.top: cart.bottom
anchors.bottom: parent.bottom
anchors.rightMargin: 16
anchors.leftMargin: 16
anchors.topMargin: 16
}
}
|