1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-05 13:08:29 -04:00

feat(dankdash): add native DankConnect integration

This commit is contained in:
purian23
2026-07-25 20:16:29 -04:00
parent 64461c534f
commit 52068fb61b
5 changed files with 678 additions and 1 deletions
+11 -1
View File
@@ -9,8 +9,11 @@ Item {
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
readonly property int overviewGridHeight: 410
readonly property int dankConnectCardHeight: 124
implicitWidth: SettingsData.showWeekNumber ? 736 : 700
implicitHeight: 410
implicitHeight: overviewGridHeight + Theme.spacingM + dankConnectCardHeight
signal switchToWeatherTab
signal switchToMediaTab
@@ -89,5 +92,12 @@ Item {
onClicked: root.switchToMediaTab()
}
DankConnectOverviewCard {
x: 0
y: root.overviewGridHeight + Theme.spacingM
width: parent.width
height: root.dankConnectCardHeight
}
}
}