1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-01 16:19:47 +02:00
ScreenPlay/ScreenPlayUtil/qml/Headline.qml

34 lines
581 B
QML
Raw Normal View History

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
}
}
}