is it possible to set backgroundColor = .clear to a LNPopupCustomBarViewController ? #511
-
Is it possible to set backgroundColor = .clear to a LNPopupCustomBarViewController? I've tried like this but down't work: `class CustomPopupBarVC: LNPopupCustomBarViewController {
}` |
Beta Was this translation helpful? Give feedback.
Answered by
LeoNatan
Mar 31, 2022
Replies: 1 comment 11 replies
-
It should be possible. Use let appearance = LNPopupBarAppearance()
appearance.configureWithOpaqueBackground()
appearance.backgroundColor = .clear
containingPopupBar.standardAppearance = appearance |
Beta Was this translation helpful? Give feedback.
11 replies
Answer selected by
LeoNatan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should be possible. Use
LNPopupBarAppearance
.