1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-14 22:42:34 +02:00
ScreenPlay/ScreenPlayUtil/qml/Headline.qml
Elias Steurer bb700780ef Move workshop qml files into ScreenPlayWorkshop
Move common qml stuff into ScreenPlayUtil
2022-04-23 14:32:36 +02:00

35 lines
573 B
QML

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