13 lines
229 B
QML
13 lines
229 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
Button {
|
|
property alias source: image.source
|
|
background: Item {
|
|
Image {
|
|
id:image
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
}
|