33 lines
597 B
QML
33 lines
597 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import ZShell.Config
|
|
import qs.Components
|
|
import qs.Services
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
spacing: Tokens.spacing.small
|
|
|
|
Item {
|
|
Layout.fillHeight: true
|
|
}
|
|
|
|
MaterialIcon {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
color: Colors.tPalette.m3outlineVariant
|
|
font.pointSize: 36
|
|
text: "chat"
|
|
}
|
|
|
|
CustomText {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
color: Colors.tPalette.m3onSurfaceVariant
|
|
text: qsTr("Send a message to get started")
|
|
}
|
|
|
|
Item {
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|