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/qml/HomeForm.qml
2018-06-21 08:52:00 +02:00

17 lines
215 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.2
Page {
width: 600
height: 400
title: qsTr("Home")
Label {
text: qsTr("You are on the home page.")
anchors.centerIn: parent
}
}