AntiClipSettings/qml/IconButton.qml

13 lines
229 B
QML
Raw Normal View History

2024-08-21 09:26:06 +08:00
import QtQuick 2.12
import QtQuick.Controls 2.12
Button {
property alias source: image.source
background: Item {
Image {
id:image
anchors.centerIn: parent
}
}
}