1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-07 03:22:33 +01:00
ScreenPlay/qml/Components/CustomPage.qml

28 lines
513 B
QML

import QtQuick 2.7
Rectangle {
id:tab
width:1366
height:768
color: "#eeeeee"
property string pageName: "tabname"
Text {
id: txtLoading
text: pageName
anchors.centerIn: parent
font.family: font_LibreBaskerville_Italic.name
font.pointSize: 32
font.italic: true
color: "#818181"
FontLoader{
id: font_LibreBaskerville_Italic
source: "qrc:/assets/fonts/LibreBaskerville-Italic.ttf"
}
}
}