feat: start tinkering with adding a footer for the playerbar on the ApplicationWindow

This commit is contained in:
Joshua Strobl 2024-10-06 13:05:43 +03:00
parent 4e78c664e6
commit e3a00ab8ac
4 changed files with 49 additions and 1 deletions

View file

@ -0,0 +1,23 @@
import QtQuick.Controls as Controls
import QtQuick.Layouts
import org.kde.kirigami as Kirigami
ColumnLayout {
id: playerBar
Layout.fillWidth: true
Controls.Slider {
id: seekSlider
Layout.fillWidth: true
}
RowLayout {
Layout.fillWidth: true
Controls.Button {
icon.height: Kirigami.Units.iconSizes.small
icon.name: "media-seek-backward"
}
}
}