feat(notifications): Add notification icon to create chat view
Closes: #5628
This commit is contained in:
parent
b039e9d67d
commit
d58c6eb577
|
@ -134,6 +134,19 @@ Page {
|
|||
root.createChat();
|
||||
}
|
||||
}
|
||||
|
||||
Item {
|
||||
Layout.alignment: Qt.AlignTop
|
||||
implicitHeight: 44
|
||||
implicitWidth: 44
|
||||
|
||||
StatusActivityCenterButton {
|
||||
id: notificationButton
|
||||
anchors.centerIn: parent
|
||||
unreadNotificationsCount: activityCenter.unreadNotificationsCount
|
||||
onClicked: activityCenter.open()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: Item {
|
||||
|
|
Loading…
Reference in New Issue