35 lines
992 B
QML
35 lines
992 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import QtGraphicalEffects 1.13
|
|
import "../components"
|
|
import "../../../../shared"
|
|
import "../../../../imports"
|
|
|
|
Item {
|
|
id: closedEmptyView
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
|
|
StyledText {
|
|
//% "Your chats will appear here. To start new chats press the button at the top"
|
|
text: qsTrId("your-chats-will-appear-here--to-start-new-chats-press-the---button-at-the-top")
|
|
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
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;autoSize:true;formeditorColor:"#ffffff";formeditorZoom:1.25;height:500;width:300}
|
|
}
|
|
##^##*/
|