Warning, /libraries/croutons/main.qml is written in an unsupported language. File is not indexed.
0001 // SPDX-FileCopyrightText: 2021 Carson Black <uhhadd@gmail.com> 0002 // 0003 // SPDX-License-Identifier: MIT 0004 0005 import QtQuick 2.10 0006 import QtQuick.Controls 2.10 0007 import org.kde.croutons 1.0 0008 import org.kde.kirigami 2.10 as Kirigami 0009 0010 Kirigami.ApplicationWindow { 0011 width: 200 0012 height: 200 0013 0014 Rectangle { 0015 color: "green" 0016 width: 200 0017 height: 200 0018 visible: true 0019 0020 Button { 0021 anchors.centerIn: parent 0022 Component.onCompleted: text = Singleton.wait().valueOr("toki") 0023 } 0024 } 0025 }