mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 06:14:59 +00:00
23 lines
659 B
Swift
23 lines
659 B
Swift
![]() |
//
|
||
|
// MigrationViewController.swift
|
||
|
// CovidSafe
|
||
|
//
|
||
|
// Copyright © 2020 Australian Government. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
import Lottie
|
||
|
|
||
|
class MigrationViewController: UIViewController {
|
||
|
@IBOutlet weak var animationContainer: UIView!
|
||
|
|
||
|
override func viewDidLoad() {
|
||
|
super.viewDidLoad()
|
||
|
let migrationAnimation = AnimationView(name: "spinner_migrating_db")
|
||
|
migrationAnimation.loopMode = .loop
|
||
|
migrationAnimation.frame = CGRect(origin: CGPoint(x: 0, y: 0), size: self.animationContainer.frame.size)
|
||
|
self.animationContainer.addSubview(migrationAnimation)
|
||
|
migrationAnimation.play()
|
||
|
}
|
||
|
}
|