Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created October 24, 2024 00:51
Show Gist options
  • Select an option

  • Save takoikatakotako/ab0aa872a116f37d400f83b0fd51d3a7 to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/ab0aa872a116f37d400f83b0fd51d3a7 to your computer and use it in GitHub Desktop.
SwiftUIでマークダウンを表示する
import SwiftUI
struct ContentView: View {
var body: some View {
Text("**Snorlax** is the **most** cute pokemon!\n[About Snorlax](https://en.wikipedia.org/wiki/Snorlax)")
}
}
#Preview {
ContentView()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment