【发布时间】:2021-12-25 19:54:51
【问题描述】:
以下代码
struct ContentView: View {
var body: some View {
Text("Hello, World!")
.padding()
}
}
但是下面的代码
struct ContentView: View {
var body: some View {
Text("hello@gmail.com")
.padding()
}
}
如何使“hello@gmail.com”的格式显示为“Hello, World!” (没有下划线,没有蓝色,点击删除链接)?
【问题讨论】: