forked from Qortal/Brooklyn
21 lines
453 B
QML
21 lines
453 B
QML
|
/*
|
||
|
* SPDX-FileCopyrightText: 2021 Noah Davis <noahadvs@gmail.com>
|
||
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
import QtQuick 2.15
|
||
|
import QtQml 2.15
|
||
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||
|
|
||
|
KickoffGridView {
|
||
|
id: root
|
||
|
KickoffDropArea {
|
||
|
z: -1
|
||
|
parent: root
|
||
|
anchors.fill: parent
|
||
|
targetView: root.view
|
||
|
scrollUpMargin: root.header.height * 2
|
||
|
scrollDownMargin: root.footer.height * 2
|
||
|
}
|
||
|
}
|