blob: a99a970286ebcf65e4ef754e11122ec95197d797 (
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
35
36
|
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Controls.Material 2.12
import QtQuick.Layouts 1.12
Page {
id: page
background: Rectangle {
color: "#FFFFFF"
}
height: attachedItem.height
RowLayout {
id: attachedItem
anchors.right: parent.right
anchors.rightMargin: 0
anchors.left: parent.left
anchors.leftMargin: 0
spacing: 8
ItemDelegate {
text: qsTr("filename.fileformat")
Layout.rightMargin: 0
Layout.leftMargin: 0
Layout.bottomMargin: 0
Layout.topMargin: 0
font.pixelSize: 14
font.family: "Work Sans"
Layout.fillWidth: true
icon.source: "../components/icons/folder-24px.svg"
background: Rectangle {
color: "#1A673AB7"
radius: 8
}
}
}
}
|