This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| class MyModel: ObservableObject { | |
| @Published var attempted: Bool = false | |
| @Published var firstname: String = "" { | |
| didSet { updateDismissability() } | |
| } | |
| @Published var lastname: String = "" { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // ContentView.swift | |
| // BreatheUI WatchKit Extension | |
| // | |
| // Created by Joel Bernstein on 6/24/19. | |
| // Copyright © 2019 Joel Bernstein. All rights reserved. | |
| // | |
| import SwiftUI |
NewerOlder