2022-04-23 14:32:36 +02:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls.Material
|
2022-05-05 13:02:54 +02:00
|
|
|
import ScreenPlayApp
|
2024-01-12 16:10:34 +01:00
|
|
|
|
2022-04-23 14:32:36 +02:00
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property alias text: txtHeadline.text
|
|
|
|
|
|
|
|
height: 40
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: txtHeadline
|
|
|
|
|
|
|
|
font.pointSize: 18
|
|
|
|
color: Material.primaryTextColor
|
|
|
|
text: "Headline"
|
2022-04-30 12:07:54 +02:00
|
|
|
font.family: App.settings.font
|
2022-04-23 14:32:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
height: 2
|
|
|
|
width: parent.width
|
|
|
|
color: Material.secondaryTextColor
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
right: parent.right
|
|
|
|
left: parent.left
|
|
|
|
bottom: parent.bottom
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|