Create Styled things and finish notifications module
This commit is contained in:
19
Common/Styled/StyledText.qml
Normal file
19
Common/Styled/StyledText.qml
Normal file
@@ -0,0 +1,19 @@
|
||||
import QtQuick
|
||||
import qs.Common
|
||||
|
||||
Text {
|
||||
id: clockText
|
||||
|
||||
anchors.margins: 5
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
wrapMode: Text.WordWrap
|
||||
textFormat: Text.MarkdownText
|
||||
font.bold: true
|
||||
font.pixelSize: Theme.pixelSize
|
||||
font.family: Theme.fontFamily
|
||||
color: Theme.textColor
|
||||
onLinkActivated: link => Qt.openUrlExternally(link)
|
||||
|
||||
text: ""
|
||||
}
|
||||
Reference in New Issue
Block a user