diff --git a/discover/qml/SourcesPage.qml b/discover/qml/SourcesPage.qml index 33d8f01ae97bce920949ecb1d2a3d750bf4324ac..3d5b0b89163fe5738abdf525e62c6ed9d8d26261 100644 --- a/discover/qml/SourcesPage.qml +++ b/discover/qml/SourcesPage.qml @@ -218,5 +218,30 @@ DiscoverPage { } } } + + footer: ColumnLayout { + id: foot + anchors { + right: parent.right + left: parent.left + margins: Kirigami.Units.smallSpacing + } + Repeater { + id: back + model: ResourcesProxyModel { + extending: "org.kde.discover.desktop" + } + delegate: RowLayout { + visible: !model.application.isInstalled + QQC2.Label { + Layout.fillWidth: true + text: name + } + InstallApplicationButton { + application: model.application + } + } + } + } } }