-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFloatingActionMiniButton.qml
41 lines (40 loc) · 1.04 KB
/
FloatingActionMiniButton.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// ekke (Ekkehard Gentz) @ekkescorner
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
import QtGraphicalEffects 1.0
Button {
id: button
// image should be 24x24
property alias imageSource: contentImage.source
// default: primaryColor
property alias backgroundColor: buttonBackground.color
property bool showShadow: false
focusPolicy: Qt.NoFocus
contentItem:
Item {
implicitHeight: 24
implicitWidth: 24
Image {
id: contentImage
anchors.centerIn: parent
}
}
background:
Rectangle {
id: buttonBackground
implicitWidth: 48
implicitHeight: 48
color: primaryColor
radius: width / 2
opacity: button.pressed ? 0.75 : 1.0
layer.enabled: button.showShadow
layer.effect: DropShadow {
verticalOffset: 3
horizontalOffset: 1
color: dropShadow
samples: button.pressed ? 20 : 10
spread: 0.5
}
}
}