This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
fanny-app/Page1Form.qml
2018-06-21 08:47:09 +02:00

27 lines
371 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.2
Page {
width: 600
height: 400
objectName: "Page1";
property string title: "value"
title: qsTr(title)
Label {
text: qsTr("You are on Page 1.")
anchors.centerIn: parent
}
BusyIndicator {
id: busyIndicator
visible: true
x: 40
y: 49
}
}