# Using Your Own Navigation Bar

<figure><img src="https://2352509137-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MX0mOAVWkotGme0iRzu%2Fuploads%2FnAeg0HqEtOT7rR32609F%2FScreenshot%202566-02-22%20at%2006.39.15.png?alt=media&#x26;token=80fef882-5ec7-4d3a-9c36-6f06f4ce7770" alt=""><figcaption></figcaption></figure>

### Usage

```swift
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

```
