Add volume control

This commit is contained in:
Anika Raemer 2021-03-14 14:42:32 +01:00
parent 5d5e3c6888
commit 4a83f971f3
14 changed files with 144 additions and 32 deletions

View file

@ -6,7 +6,7 @@ import QtQuick 2.0
Item {
id: container
property int margins: 20
RoundButton{
RoundImageButton{
id: back
anchors.top: parent.top
@ -16,9 +16,9 @@ Item {
visible: navigationList.pIsBackVisible
onClicked: navigationList.navigateBack();
} // RoundButton: navigate back
} // MyRoundButton: navigate back
RoundButton{
RoundImageButton{
id: closeApp
anchors.right: parent.right
anchors.top: parent.top
@ -27,7 +27,7 @@ Item {
onClicked: {
Qt.quit();
}
} // RoundButton: closeApp
} // MyRoundButton: closeApp
Rectangle{
anchors.left: parent.left