2020-05-11 21:24:08 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Qt.labs.platform 1.1
|
2020-05-13 02:51:26 +00:00
|
|
|
import "./onboarding"
|
|
|
|
import "./app"
|
2020-05-11 21:24:08 +00:00
|
|
|
|
2020-05-16 23:46:46 +00:00
|
|
|
|
2020-05-11 21:24:08 +00:00
|
|
|
ApplicationWindow {
|
|
|
|
id: applicationWindow
|
|
|
|
width: 1232
|
|
|
|
height: 770
|
|
|
|
title: "Nim Status Client"
|
|
|
|
visible: true
|
2020-05-12 22:51:00 +00:00
|
|
|
font.family: "Inter"
|
2020-05-16 23:46:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: element
|
|
|
|
x: 772
|
|
|
|
text: logic.lastMessage
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 17
|
|
|
|
font.bold: true
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
font.pixelSize: 17
|
2020-05-11 21:24:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-13 02:51:26 +00:00
|
|
|
|