mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-13 19:47:02 -06:00
9 lines
249 B
Swift
9 lines
249 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.
|
|
let title: String
|
|
}
|