1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-04 01:42:44 +00:00

Add support for server-side notifications

This commit is contained in:
Henk Kalkwater 2021-09-09 02:18:10 +02:00
parent 357ac89330
commit 60bc90c5fa
No known key found for this signature in database
GPG key ID: A69C050E9FD9FF6A
14 changed files with 179 additions and 14 deletions

View file

@ -0,0 +1,28 @@
import QtQuick 2.6
import QtQuick.Controls 2.6
Rectangle {
property alias title: titleText.text
property alias content: contentText.text
color: "black"
implicitHeight: column.height
implicitWidth: column.width
Column {
id: column
width: parent.width
Text {
id: titleText
width: parent.width
font.pointSize: 24
color: "white"
}
Text {
id: contentText
width: parent.width
color: "white"
}
}
}