Код: Выделить всё
struct ContentView : View {
@State var value = ""
var body: some View {
Form {
Section(header: Text("First Name")) {
TextField($value)
}
Section(header: Text("Last Name")) {
TextField($value)
}
}.foregroundColor(Color.blue)
}
}

Подробнее здесь: https://stackoverflow.com/questions/572 ... in-swiftui
Мобильная версия