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.

25 lines
455 B

10 months ago
pragma Singleton
import QtQuick 2.13
Item {
property int radius: 25
property real disableOpacity: 0.25
property real hoverOpacity: 0.20
property int animationDuration: 180
property real hoverCoeffecient: 1.07
property real disableCoeffecient: 4
10 months ago
enum State {
//status
10 months ago
Enable,
Pressed,
Hoverd,
Disabel,
//button type
Primary,
Secondary,
Tertiary
10 months ago
}
}