1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-07-18 18:48:28 +02:00
ScreenPlay/ScreenPlayUtil/qml/Headline.qml
2023-02-02 15:25:26 +01:00

34 lines
581 B
QML

import QtQuick
import QtQuick.Controls.Material
import ScreenPlayApp
import ScreenPlay
Item {
id: root
property alias text: txtHeadline.text
height: 40
Text {
id: txtHeadline
font.pointSize: 18
color: Material.primaryTextColor
text: "Headline"
font.family: App.settings.font
}
Rectangle {
height: 2
width: parent.width
color: Material.secondaryTextColor
anchors {
right: parent.right
left: parent.left
bottom: parent.bottom
}
}
}