Change create Live Event Navigation bar, icon and view background - iOS

Hello,
I want to change the navigation bar button tittle color as well camara, audio device icon tint color.
Version : SendbirdLiveSDK 1.0.0-beta.4
Version : SendbirdLiveUIKit 1.0.0-beta.3

For event Listing I’m using : LiveEventListViewController

class CustomLiveEventListViewController: LiveEventListViewController {
        var isClient = false
    
    override func viewDidLoad() {
        super.viewDidLoad()
        super.title = "Live Event"
        super.titleLabel.text = "Close"
        super.rightBarButton.isHidden = isClient
        let tap = UITapGestureRecognizer(target: self,action: #selector(onTapBtnClose))
        super.titleLabel.isUserInteractionEnabled = true
        super.titleLabel.addGestureRecognizer(tap)
}

For more reference please check this video link : shorturl.at/qsvPQ

Thanks.

Hi @Dipak, you can change the title color like this:

super.titleLabel.textColor = UIColor.red // Color of your choice
super.cameraIcon.tintColor = UIColor.blue // Color of your choice

Hi @mininny,
Thanks for reply, but I want to change in the event details screen when user tap on event.
For more reference kindly check this video link : shorturl.at/qsvPQ