blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.8 KiB
63 lines
1.8 KiB
// Copyright SIX DAY LLC. All rights reserved.
|
|
|
|
import Foundation
|
|
import UIKit
|
|
import StatefulViewController
|
|
|
|
class LoadingView: UIView {
|
|
|
|
let label = UILabel()
|
|
let imageView = UIImageView()
|
|
let loadingIndicator = UIActivityIndicatorView(activityIndicatorStyle: .gray)
|
|
|
|
let insets: UIEdgeInsets
|
|
|
|
init(
|
|
message: String = NSLocalizedString("Generic.Loading", value: "Loading", comment: ""),
|
|
image: UIImage? = .none,
|
|
insets: UIEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
|
|
) {
|
|
self.insets = insets
|
|
super.init(frame: .zero)
|
|
|
|
backgroundColor = .white
|
|
|
|
label.translatesAutoresizingMaskIntoConstraints = false
|
|
label.text = message
|
|
|
|
imageView.translatesAutoresizingMaskIntoConstraints = false
|
|
imageView.image = image
|
|
|
|
loadingIndicator.translatesAutoresizingMaskIntoConstraints = false
|
|
loadingIndicator.startAnimating()
|
|
|
|
let stackView = UIStackView(arrangedSubviews: [
|
|
loadingIndicator,
|
|
label,
|
|
imageView,
|
|
])
|
|
stackView.translatesAutoresizingMaskIntoConstraints = false
|
|
stackView.alignment = .center
|
|
stackView.axis = .vertical
|
|
stackView.spacing = 10
|
|
|
|
addSubview(stackView)
|
|
|
|
NSLayoutConstraint.activate([
|
|
stackView.trailingAnchor.constraint(equalTo: trailingAnchor),
|
|
stackView.leadingAnchor.constraint(equalTo: leadingAnchor),
|
|
stackView.centerXAnchor.constraint(equalTo: centerXAnchor),
|
|
stackView.centerYAnchor.constraint(equalTo: centerYAnchor),
|
|
])
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
}
|
|
|
|
extension LoadingView: StatefulPlaceholderView {
|
|
func placeholderViewInsets() -> UIEdgeInsets {
|
|
return insets
|
|
}
|
|
}
|
|
|