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/FoodPlanForm.qml
2018-06-22 15:33:16 +02:00

29 lines
554 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.2
Page {
anchors.fill: parent
title: qsTr("Speiseplanplan")
Label {
id: laWelcome
text: "Hier kannst du dir den Vertretungsplan des Fannys anschauen"
font.pixelSize: 20
wrapMode: Label.Wrap
width: window.width / 1.2
anchors {
top: parent.top
}
}
Button {
id: butt
text: "load"
onClicked: {
var ret = _cppServerConn.getFoodPlan();
laWelcome.text = ret
}
}
}