12 lines
234 B
QML
12 lines
234 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
Button {
|
|
hoverEnabled: true
|
|
background: Rectangle {
|
|
color: "transparent"
|
|
border.color: parent.hovered ? "red" : "blue"
|
|
border.width: 2
|
|
radius: 20
|
|
}
|
|
}
|