Skip to content

Instantly share code, notes, and snippets.

@baz8080
Created May 27, 2020 16:07
Show Gist options
  • Save baz8080/93f6003f07f30fe7d77900b5caf6e877 to your computer and use it in GitHub Desktop.
Save baz8080/93f6003f07f30fe7d77900b5caf6e877 to your computer and use it in GitHub Desktop.
Workaround for "gap" when using opaque UINavigatonBar color and Zendesk Support on iOS 13+
let requestConfig = RequestUiConfiguration()
let helpCenter = HelpCenterUi.buildHelpCenterOverviewUi(withConfigs: [requestConfig])
// Workaround when using an opaque UINavigationBar with a tint
helpCenter.extendedLayoutIncludesOpaqueBars = true;
self.navigationController?.pushViewController(helpCenter, animated: true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment