CountryPickerView icon indicating copy to clipboard operation
CountryPickerView copied to clipboard

after cancelling search header is not showing.

Open SreekanthGudisi opened this issue 3 years ago • 2 comments

Hi,

Actually, I'm presenting VC. After clicking the cancel button, that Close button BackView is not showing.

Here attaching the Video.

https://user-images.githubusercontent.com/23524697/141965986-25fccda6-fb69-4d06-9a09-a56a37e4fbc5.mov

Thank You.

.

SreekanthGudisi avatar Nov 16 '21 10:11 SreekanthGudisi

Hi,

Can u help m with this? I'm still struct here 😒

SreekanthGudisi avatar Nov 30 '21 06:11 SreekanthGudisi

There is a known issue in iOS 15 so just add this into the AppDelegate inside didFinishLaunchingWithOptions and the problem will be fixed

        if #available(iOS 15, *) {
            let appearance = UINavigationBarAppearance()
            appearance.configureWithOpaqueBackground()
            UINavigationBar.appearance().standardAppearance = appearance
            UINavigationBar.appearance().scrollEdgeAppearance = appearance
        }

zaidqattan avatar May 01 '22 20:05 zaidqattan