19 lines
252 B
Swift
19 lines
252 B
Swift
//
|
|
// RichText.swift
|
|
// AIGrammar
|
|
//
|
|
// Created by oscar on 2024/4/3.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct RichText: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
RichText()
|
|
}
|