2019-07-25 16:43:52 +10:00
|
|
|
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-07-25 16:43:52 +10:00
|
|
|
|
2019-08-28 17:54:53 +10:00
|
|
|
onSourceChanged: animation.running = true
|
2019-07-25 16:43:52 +10:00
|
|
|
|
2019-08-28 17:54:53 +10:00
|
|
|
HNumberAnimation {
|
|
|
|
id: animation
|
|
|
|
target: loader.item
|
|
|
|
property: "scale"
|
|
|
|
from: 0
|
|
|
|
to: 1
|
|
|
|
overshoot: 3
|
2019-07-25 16:43:52 +10:00
|
|
|
}
|
|
|
|
}
|