chronotruck / FlagPhoneNumber

A formatted phone number UITextField with country flag picker.
Apache License 2.0
437 stars 317 forks source link

Country code over lap on phone number. #137

Open SurendraiOSer opened 4 years ago

SurendraiOSer commented 4 years ago

Describe the bug My device update iOS 12 to iOS 13 then it occurs.

To Reproduce Country code overlap every where and every time.

Screenshots Screenshot 2019-11-04 at 2 55 35 PM If applicable, add screenshots to help explain your problem.

Smartphone (please complete the following information):

Additional context i update FlagPhoneNumber 0.7.6 to 0.7.8 but not fixed.

abrahmgo commented 4 years ago

you can resolve this issue, with this lines

entryCellPhone.leftView?.translatesAutoresizingMaskIntoConstraints = false entryCellPhone.leftView?.widthAnchor.constraint(equalToConstant: 110.0).isActive = true

if you want to be more exactly, you can use this line

entryCellPhone.flagButtonEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)

obviously you need change the values

Regards

volhan commented 4 years ago

Solved in #112

texyz commented 4 years ago

Please where exactly do i add these lines of codes

arjunguptha123 commented 4 years ago

Thank you i got it