This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric/main.qml
2019-12-04 16:44:30 +08:00

24 lines
391 B
QML

import QtQuick 2.6
import QtQuick.Controls 2.13
import QtQuick.Window 2.2
Window {
visible: true
width: 360;
height: 640;
title: qsTr("Hello Doric");
StackView {
id: stack;
anchors.centerIn: parent;
initialItem: mainView;
width: 360;
height: 640;
}
Rectangle {
id: mainView;
color: "lightgreen";
}
}