mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 14:05:17 +00:00
25 lines
518 B
QML
25 lines
518 B
QML
import QtQuick 2.6
|
|
import Sailfish.Silica 1.0
|
|
|
|
Row {
|
|
signal playPressed()
|
|
|
|
anchors {
|
|
//left: parent.left
|
|
right: parent.right
|
|
leftMargin: Theme.horizontalPageMargin
|
|
rightMargin: Theme.horizontalPageMargin
|
|
}
|
|
spacing: Theme.paddingMedium
|
|
IconButton {
|
|
id: favouriteButton
|
|
icon.source: "image://theme/icon-m-favorite"
|
|
}
|
|
IconButton {
|
|
id: playButton
|
|
icon.source: "image://theme/icon-l-play"
|
|
onPressed: playPressed()
|
|
}
|
|
|
|
}
|