17 lines
321 B
QML
17 lines
321 B
QML
|
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
import QtQuick
|
||
|
import QtQuick.Controls
|
||
|
|
||
|
Item {
|
||
|
Label {
|
||
|
anchors.centerIn: parent
|
||
|
text: "This is Records screen"
|
||
|
font {
|
||
|
pixelSize: 24
|
||
|
bold: true
|
||
|
}
|
||
|
}
|
||
|
}
|