lqml/examples/Qt6/meshtastic/qml/ext/common/MainIcon.qml
pls.153 dc29ac9084 add Qt6 version of some examples (see below); revisions
'9999', 'advanced-qml-auto-reload', 'planets', 'sokoban'
2024-10-22 13:27:56 +02:00

14 lines
331 B
QML

import QtQuick
Image {
horizontalAlignment: Image.AlignHCenter
verticalAlignment: Image.AlignVCenter
width: header.height
height: width
MouseArea {
anchors.fill: parent
onClicked: swipeView.currentIndex = parent.Positioner.index
onPressAndHold: Lisp.call("app:icon-press-and-hold", parent.objectName)
}
}