15 lines
209 B
QML
15 lines
209 B
QML
import QtQuick
|
|
import QtQuick.Window
|
|
import MyApp 1.0
|
|
|
|
Window {
|
|
width: 800
|
|
height: 600
|
|
visible: true
|
|
title: "metabolus"
|
|
color: "black"
|
|
|
|
MainScreen {
|
|
anchors.fill: parent
|
|
}
|
|
} |