mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-10 13:46:35 +00:00
4ee21ada05
Introduced Style.svg() Style.png() Style.emoji() and Style.icon() in Style.qml. Those should be used to set the source in Images instead of using relative paths. Usage: Image { source: Style.svg("check) .... Also moved all Singletons inside a new "utils" folder and made it a QML module, to use import utils 1.0 instead of relative paths Closes #3678
43 lines
1.1 KiB
QML
43 lines
1.1 KiB
QML
import QtQuick 2.1
|
|
import QtQuick.Controls 1.0
|
|
import QtQuick.Controls.Styles 1.0
|
|
import QtWebEngine 1.9
|
|
import QtQuick.Layouts 1.0
|
|
import "../../../shared"
|
|
import "../../../shared/status"
|
|
|
|
import utils 1.0
|
|
|
|
Rectangle {
|
|
id: downloadView
|
|
color: Style.current.background
|
|
|
|
ListView {
|
|
id: listView
|
|
anchors {
|
|
topMargin: Style.current.bigPadding
|
|
top: parent.top
|
|
bottom: parent.bottom
|
|
bottomMargin: Style.current.bigPadding * 2
|
|
horizontalCenter: parent.horizontalCenter
|
|
}
|
|
width: 624
|
|
spacing: Style.current.padding
|
|
|
|
model: downloadModel
|
|
delegate: DownloadElement {
|
|
width: parent.width
|
|
}
|
|
}
|
|
|
|
Text {
|
|
visible: !listView.count
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
font.pixelSize: 15
|
|
//% "Downloaded files will appear here."
|
|
text: qsTrId("downloaded-files-will-appear-here-")
|
|
color: Style.current.secondaryText
|
|
}
|
|
}
|