blob: 7e940ccef207a1dd7c0c4e2854be1b3513ae86f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: GPL-2.0
import QtQuick 2.12
import QtQuick.Controls 2.12
import org.kde.kirigami 2.4 as Kirigami
Kirigami.ScrollablePage {
width: parent.width
height: parent.height
visible: false
background: Rectangle { color: subsurfaceTheme.backgroundColor }
}
|