Created
June 30, 2022 00:37
-
-
Save jhowlin/a26b8320ba9eb856ec41845f8b610bd5 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
import Foundation | |
import SwiftUI | |
struct ContentView: View { | |
var body: some View { | |
VStack { | |
Text("Regular") | |
Text("*Italics*") | |
Text("**Bold**") | |
Text("~Strikethrough~") | |
Text("`Code`") | |
Text("[Link](https://apple.com)") | |
Text("***[They](https://apple.com) ~are~ `combinable`***") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment