From 0b5a4bf665ce512eba3d03d303027d25ea14156b Mon Sep 17 00:00:00 2001 From: Emin Date: Wed, 7 Aug 2024 16:02:02 +0500 Subject: [PATCH] ios: adding skipped files --- .../Presentation/Components/CountryPickerUtils.swift | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 iphone/Maps/Tourism/Presentation/Components/CountryPickerUtils.swift diff --git a/iphone/Maps/Tourism/Presentation/Components/CountryPickerUtils.swift b/iphone/Maps/Tourism/Presentation/Components/CountryPickerUtils.swift new file mode 100644 index 0000000000..62e4b479ff --- /dev/null +++ b/iphone/Maps/Tourism/Presentation/Components/CountryPickerUtils.swift @@ -0,0 +1,12 @@ +import UIKit +import CountryPickerView + +func getCountryPickerView() -> CountryPickerView { + let cpv = CountryPickerView() + cpv.translatesAutoresizingMaskIntoConstraints = false + cpv.textColor = .white + cpv.showCountryNameInView = true + cpv.showPhoneCodeInView = false + cpv.showCountryCodeInView = false + return cpv +}