/FatalErrorNeverContentView.swift Secret
Created
June 27, 2022 15:09
Star
You must be signed in to star a gist
This file contains 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 | |
@available(iOS 16.0, *) | |
struct ContentView: View { | |
@State var errorText = "" | |
var body: some View { | |
Form { | |
Section("Known Errors") { | |
Button("Wrong", action: { MyErrors.wrongError }) | |
Button("Bad", action: { let error = MyErrors.badError }) | |
Button("Worst") { | |
let errorString = String(describing: MyErrors.worstError) | |
} | |
} | |
Section("Custom Error") { | |
TextField("Error", text: $errorText) | |
Button("Throw Error") { | |
let myError = MyErrors.createError(text: errorText) | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment