blob: 3dfd6cc2ca800362e13db0efa0b2258e0843d63a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Controls.Material 2.12
import QtQuick.Layouts 1.12
ListView {
width: 362
spacing: 12
Rectangle {
id: rectangle
anchors.fill: parent
z: -1
}
}
|