Код: Выделить всё
NavigationView {
Form {
Section {
Picker(selection: $currencyCode, label: Text("Currency")) {
ForEach(0 ..< codes.count) {
Text(self.codes[$0]).tag($0)
}
}
}
}
}

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