Files
evcharger-app/SimpleNavigationItem.qml
T

20 lines
418 B
QML
Raw Normal View History

2024-07-10 22:25:27 +02:00
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
2024-07-17 19:47:36 +02:00
WhiteItemDelegate {
2024-07-10 22:25:27 +02:00
id: navigationItem
property color color
property string component
property var componentArgs: undefined
Layout.fillWidth: true
Component.onCompleted: {
contentItem.children[0].color = navigationItem.color
}
onClicked: stackView.push(navigationItem.component, navigationItem.componentArgs)
}