Loading...
AmityUIKit allows some parts of the component to be customized:
Using your own navigation bar
let communityHomePage = AmityCommunityHomePageViewController.make() communityHomePage.navigationBarType = .custom // create custom view let label = UILabel() label.text = "This is a navigation custom view" label.backgroundColor = .orange // assign custom view to title view homepage.navigationItem.titleView = label