Slide 40
Slide 40 text
Arrives in Turkey - Swift
.sheet(isPresented: $showCountrySwitch) {
VStack {
CountryButtonView(country: .ukraine, font: .body) {
appData.activeCountry = .ukraine
closeSheet()
}
CountryButtonView(country: .russia, font: .body) {
appData.activeCountry = .russia
closeSheet()
}
CountryButtonView(country: .turkey, font: .body) {
appData.activeCountry = .turkey
closeSheet()
}
CountryButtonView(country: .un, font: .body) {
appData.activeCountry = .un
closeSheet()
}
}
.presentationDetents([.medium])
.padding(.vertical, 40)
}