You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
281 B

pragma Singleton
import QtQuick 2.13
Item {
property int radius: 25
property real disableOpacity: 0.25
property real hoverOpacity: 0.20
property int animationDuration: 200
enum State {
Enable,
Pressed,
Hoverd,
Disabel
}
}