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

24 lines
391 B
QML
Raw Normal View History

2019-12-04 15:51:46 +08:00
import QtQuick 2.6
2019-12-04 16:44:30 +08:00
import QtQuick.Controls 2.13
2019-12-04 15:51:46 +08:00
import QtQuick.Window 2.2
Window {
visible: true
2019-12-04 16:44:30 +08:00
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";
}
2019-12-04 15:51:46 +08:00
}