mirror of
https://github.com/VernissageApp/Vernissage.git
synced 2024-12-29 10:20:11 +01:00
27 lines
636 B
Swift
27 lines
636 B
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2022 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
|
|
import Foundation
|
|
|
|
public class ApplicationState: ObservableObject {
|
|
public static let shared = ApplicationState()
|
|
private init() { }
|
|
|
|
@Published var accountData: AccountData?
|
|
@Published var showInteractionStatusId = ""
|
|
}
|
|
|
|
extension ApplicationState {
|
|
public static var preview: ApplicationState = {
|
|
let applicationState = ApplicationState()
|
|
|
|
applicationState.accountData = AccountData()
|
|
|
|
return applicationState
|
|
}()
|
|
}
|