LomiriNumberAnimation QML Type
LomiriNumberAnimation is a NumberAnimation that has predefined settings to ensure that Lomiri applications are consistent in their animations. More...
Import Statement: | import Lomiri.Components 1.3 |
Inherits: |
Detailed Description
Example of use:
import QtQuick 2.4 import Lomiri.Components 1.3 Rectangle { width: 100; height: 100 color: LomiriColors.orange LomiriNumberAnimation on x { to: 50 } }
LomiriNumberAnimation is predefined with the following settings:
- duration: LomiriAnimation.FastDuration
- easing: LomiriAnimation.StandardEasing
If the standard duration and easing used by LomiriNumberAnimation do not satisfy a use case or you need to use a different type of Animation (e.g. ColorAnimation), use standard durations and easing defined in LomiriAnimation manually in order to ensure consistency.