ios: adding skipped files

This commit is contained in:
Emin 2024-08-07 16:02:02 +05:00
parent e62d6ef2d0
commit 0b5a4bf665

View file

@ -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
}