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/SettingsForm.qml

36 lines
632 B
QML
Raw Normal View History

import QtQuick 2.0
import QtQuick.Controls 2.4
import "../Components"
Page {
id: root
title: "Einstellungen"
signal opened()
onOpened: {
console.log("Settings Form opened")
var filters = _cppAppSettings.readFiltersQml()
}
Column {
id: settingsCol
anchors.fill: parent
SettingsDelegate {
width: parent.width
onClicked: {
formStack.push(filterForm)
}
title: "Klassen"
description: "Wähle die Klassen(stufen) aus, für die du den Vertretungsplan ansehen möchtest"
}
}
}