Created
May 25, 2020 14:58
-
-
Save archieedwards/da9966a630a8caa89269f47fd0c7fd4e to your computer and use it in GitHub Desktop.
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
struct AlertItem: Identifiable { | |
var id = UUID() | |
var title = Text("") | |
var message: Text? | |
var dismissButton: Alert.Button? | |
var primaryButton: Alert.Button? | |
var secondaryButton: Alert.Button? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment