moment/src/qml/Pages/EditAccount/Encryption.qml

20 lines
376 B
QML
Raw Normal View History

import QtQuick 2.12
import "../../Base"
2019-08-28 17:54:53 +10:00
HLoader {
id: loader
source: accountInfo.total_keys_to_import ?
"ImportingKeys.qml" : "ImportExportKeys.qml"
2019-08-28 17:54:53 +10:00
onSourceChanged: animation.running = true
2019-08-28 17:54:53 +10:00
HNumberAnimation {
id: animation
target: loader.item
property: "scale"
from: 0
to: 1
overshoot: 3
}
}