Skip to content

Instantly share code, notes, and snippets.

@zafarivaev
Created January 19, 2022 16:42
Show Gist options
  • Save zafarivaev/826822fd84f170c34ebab6eb831403cc to your computer and use it in GitHub Desktop.
Save zafarivaev/826822fd84f170c34ebab6eb831403cc to your computer and use it in GitHub Desktop.
import UIKit
import Combine
...
enum State: String {
case initial = "Initial"
case loading = "Loading"
case loadedSuccessfully = "Success"
case loadingFailed = "Failure"
}
class ViewController: UIViewController {
...
@Published var state: State = .initial
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment