struct ContentView: View {
var body: some View {
List {
Text("Hello World")
.textSelection(.enabled)
}
}
}
// Work: iOS 18 and earlier
struct ContentView: View {
var body: some View {
Text("Hello World")
.textSelection(.enabled)
}
}
Подробнее здесь: https://stackoverflow.com/questions/789 ... -on-ios-18
Мобильная версия