mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 05:55:18 +00:00
24 lines
517 B
QML
24 lines
517 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()
|
||
|
}
|
||
|
}
|