ImageButton.qml 282 B

12345678910111213141516
  1. import QtQuick 2.0
  2. Button {
  3. property string icon
  4. implicitWidth: implicitHeight
  5. Image {
  6. id: image
  7. source: `qrc:/icons/${icon}.png`
  8. fillMode: Image.PreserveAspectFit
  9. anchors.fill: parent
  10. anchors.margins: parent.width / 8
  11. }
  12. }