2020-07-08 19:59:10 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import QtGraphicalEffects 1.13
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
|
|
|
import shared.panels 1.0
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2020-07-08 19:59:10 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: closedEmptyView
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
StyledText {
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Your chats will appear here. To start new chats press the button at the top")
|
2020-07-08 19:59:10 +00:00
|
|
|
anchors.verticalCenterOffset: -80
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 56
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 56
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
font.pixelSize: 15
|
|
|
|
color: Style.current.darkGrey
|
|
|
|
}
|
|
|
|
}
|