Initial commit (new git name)

This commit is contained in:
Niels
2025-07-14 17:08:05 +02:00
commit 5c111601d7
338 changed files with 28160 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
import QtQuick 2.0
Item {
property string page: "FavoritesTab.qml"
property real showP: 0.0
property int tab: 0
width: parent.width
height: Theme.itemSizeMedium//play.height + (Theme.paddingMedium * 2)
Row {
id: row
width: parent.width
height: parent.height//Theme.itemSizeMedium//play.height + (Theme.paddingMedium * 2)
anchors.verticalCenter: parent.verticalCenter
TabButton {
id: home
down: tab === 0
width: parent.width / 3
// icon: "image://theme/icon-m-home" //"image://theme/icon-m-video"
text: qsTr("Favorites")
onButtonClick: {showP=0.0;tab = 0}
}
TabButton {
id: search
down: tab === 1
width: parent.width / 3
// icon: "image://theme/icon-m-search"
text: qsTr("History")
onButtonClick: {showP=0.0;tab = 1}
}
TabButton {
id: favorite
down: tab === 2
width: parent.width / 3
// icon: "image://theme/icon-m-favorite"
text: qsTr("Search")
onButtonClick: {showP=0.0;tab = 2;console.log("CLICK")}
}
}
}