mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
9d382b1c81
Profile fetching page, which is part of onboarding flow, is updated so it matches the latest figma changes now.
26 lines
458 B
QML
26 lines
458 B
QML
import QtQuick 2.14
|
|
|
|
import utils 1.0
|
|
|
|
Item {
|
|
id: root
|
|
implicitHeight: 240
|
|
implicitWidth: 240
|
|
|
|
|
|
SpriteSequence {
|
|
id: loadingAnimation
|
|
anchors.fill: root
|
|
running: true
|
|
|
|
Sprite {
|
|
id: sprite
|
|
frameCount: 94
|
|
frameWidth: 240
|
|
frameHeight: 240
|
|
frameRate: 30
|
|
source: Style.png(Constants.onboarding.profileFetching.imgInProgress)
|
|
}
|
|
}
|
|
}
|