2023-12-27 20:59:22 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-12-26 23:31:55 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
|
|
|
|
Page {
|
|
|
|
Label {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
text: "Here we go!"
|
|
|
|
font {
|
|
|
|
pixelSize: 24
|
|
|
|
bold: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|