Warning, /network/kdeconnect-kde/app/qml/PluginInfoPage.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  * SPDX-FileCopyrightText: 2019 Nicolas Fella <nicolas.fella@gmx.de>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005  */
0006 
0007 import QtQuick
0008 import org.kde.kirigami as Kirigami
0009 
0010 Kirigami.Page {
0011     id: root
0012     property string configFile
0013     property string device
0014 
0015     actions: loader.item && loader.item.action ? [loader.item.action] : []
0016 
0017     onConfigFileChanged: loader.setSource(configFile, {
0018         device: root.device
0019     })
0020 
0021     Loader {
0022         anchors.fill: parent
0023         id: loader
0024         Component.onCompleted: setSource(configFile, {
0025             device: root.device
0026         })
0027     }
0028 }
0029 
0030 
0031