mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-12 18:30:41 -06:00
19 lines
518 B
Swift
19 lines
518 B
Swift
/// State used to configure the display of a `LoadingOverlayView`.
|
|
///
|
|
public struct LoadingOverlayState: Equatable {
|
|
// MARK: Properties
|
|
|
|
/// The title of the loading overlay, displayed below the activity indicator.
|
|
public let title: String
|
|
|
|
// MARK: Initializers
|
|
|
|
/// Initializes a `LoadingOverlayState`.
|
|
///
|
|
/// - Parameters:
|
|
/// - title: The title of the loading overlay, displayed below the activity indicator.
|
|
public init(title: String) {
|
|
self.title = title
|
|
}
|
|
}
|