42 lines
881 B
QML
42 lines
881 B
QML
import QtQuick
|
|
import QtQuick.Window
|
|
|
|
QtObject {
|
|
property Window topWindow: Window {
|
|
width: 960
|
|
height: 540
|
|
visible: true
|
|
title: "nomad-top"
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: "#181818"
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: "nomad top screen"
|
|
color: "white"
|
|
font.pixelSize: 50
|
|
}
|
|
}
|
|
}
|
|
|
|
property Window bottomWindow: Window {
|
|
width: 620
|
|
height: 540
|
|
visible: true
|
|
title: "nomad-bottom"
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: "#181818"
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: "nomad bottom screen"
|
|
color: "white"
|
|
font.pixelSize: 50
|
|
}
|
|
}
|
|
}
|
|
} |