1ab79347e9
- Cleaned up code - Sizes are standardized - New HCheckBox component - Replace RememberAccount page by a checkbox on the SignIn page - The page can now be flicked if it's not tall enough to display everything - HNumberAnimation now has an overshoot property that will set the right easing type, overshoot and adapt the animation factor/duration. - HImage can now be colorized
11 lines
278 B
QML
11 lines
278 B
QML
import QtQuick 2.12
|
|
|
|
NumberAnimation {
|
|
property real factor: Math.max(overshoot / 1.75, 1.0)
|
|
property real overshoot: 1.0
|
|
|
|
duration: theme.animationDuration * factor
|
|
easing.type: overshoot > 1 ? Easing.InOutBack : Easing.Linear
|
|
easing.overshoot: overshoot
|
|
}
|