Navigation bar back button sometimes has a white background on its liquid glass layer when I navigate to the screen.
I want it to be of clear background as shown below.
I am not setting any tint or background on left bar button item. Below is the code for navigation bar appearance.
let appearance = UINavigationBarAppearance()
appearance.configureWithOpaqueBackground()
appearance.backgroundColor = backgroundColor
appearance.largeTitleTextAttributes = [NSAttributedString.Key.foregroundColor: titleTextColor]
appearance.titleTextAttributes = [NSAttributedString.Key.foregroundColor: titleTextColor]
self.navigationController?.navigationBar.standardAppearance = appearance
self.navigationController?.navigationBar.scrollEdgeAppearance = self.navigationController?.navigationBar.standardAppearance
self.navigationController?.navigationBar.prefersLargeTitles = prefersLargeTitles

