fix: PageHeader actions zu Page actions verschoben

- actions-Property gehört in Page, nicht in PageHeader (Lomiri.Components Standard)

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
darklithium
2026-06-03 00:34:32 +02:00
parent f82cbf40c9
commit 348f7bdf62
+10 -11
View File
@@ -61,19 +61,18 @@ MainView {
header: PageHeader {
title: "Fortune Cookie"
// Einstellungen-Button im Header
actions: [
Action {
iconName: "settings"
text: "Einstellungen"
onTriggered: {
mainStack.currentIndex = 1;
}
}
]
}
actions: [
Action {
iconName: "settings"
text: "Einstellungen"
onTriggered: {
mainStack.currentIndex = 1;
}
}
]
// ============================================================
// INITIALISIERUNGS-TIMER
// ============================================================