Created
October 24, 2024 00:46
-
-
Save takoikatakotako/763cf0eaff8de33c14b3db0b6ad50842 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 SwiftUI | |
| struct ContentView: View { | |
| let markdownText: String = "**Snorlax** is the **most** cute pokemon!\n[About Snorlax](https://en.wikipedia.org/wiki/Snorlax)" | |
| var body: some View { | |
| Text(LocalizedStringKey(markdownText)) | |
| } | |
| } | |
| #Preview { | |
| ContentView() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment