Skip to content

Instantly share code, notes, and snippets.

@barrault01
Created March 29, 2022 07:09
Show Gist options
  • Save barrault01/cbf5c98adf53d28b6c307ea87171cc7a to your computer and use it in GitHub Desktop.
Save barrault01/cbf5c98adf53d28b6c307ea87171cc7a to your computer and use it in GitHub Desktop.
An ObservableObject user for demonstrating the publisher CombineLatest
import SwiftUI
import Combine
class User: ObservableObject {
@Published var username: String = ""
@Published var password: String = ""
@Published var protectWithTouchID = false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment