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/Forms/FoodPlanForm.qml
dorian 99fd686c65 - New Design almost finished
- further implementation of in-app event display but stiff having problems
2018-12-23 00:06:05 +01:00

66 lines
1.6 KiB
QML

import QtQuick 2.9
import QtQuick.Controls 2.4
import QtGraphicalEffects 1.0
Page {
id:root
//anchors.fill: parent
property bool cookplanChanged
title: qsTr("Speiseplan")
property string icon: "qrc:/graphics/images/TreffpunktFannyLogo.png"
property string link: "http://www.treffpunkt-fanny.de"
signal opened()
onOpened: {
console.warn("foodplan opened")
}
// Image{
// source: "qrc:/graphics/chat_background.jpg";
// height: parent.height
// width: parent.width
// fillMode: Image.Tile
// horizontalAlignment: Image.AlignLeft
// verticalAlignment: Image.AlignTop
// }
// LinearGradient {
// anchors.fill: parent
// start: Qt.point(0, 0)
// end: Qt.point(0, parent.height)
// gradient: Gradient {
// GradientStop { position: 0.0; color: "#4db2b3" }
// GradientStop { position: 1.0; color: "#8f4dae" }
// }
// }
Loader {
id: pageLoader
anchors.fill: parent
source: "./LoadingForm.qml"
onSourceChanged: animation.start()
NumberAnimation {
id: animation
target: pageLoader.item
property: "opacity"
from: 0
to: 100
duration: 500
easing.type: Easing.InExpo
}
}
Timer {
interval: 500
running: true
repeat: false
onTriggered: {
_cppServerConn.getFoodPlan()
pageLoader.source = "../Components/FoodPlanDisplay.qml"
}
}
}