mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-21 06:35:53 +00:00
14 lines
234 B
QML
14 lines
234 B
QML
|
/*
|
||
|
SPDX-FileCopyrightText: 2013 Martin Klapetek <mklapetek(at)kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
import QtQuick 2.0
|
||
|
|
||
|
NumberAnimation {
|
||
|
id: fadeIn
|
||
|
duration: 1000
|
||
|
easing.type: Easing.InOutQuad
|
||
|
}
|