Skip to content

An extension to SwiftUI that will allow items to be placed next to the navigation bar large title.

License

Notifications You must be signed in to change notification settings

markvanwijnen/NavigationBarLargeTitleItems

Repository files navigation

NavigationBarLargeTitleItems

An extension to SwiftUI that will allow items to be placed next to the navigation bar large title.

Warning: This package makes use of a private API class '_UINavigationBarLargeTitleView'. Please be aware that this might get your app rejected when submitting it to the App Store.

Preview

Preview

Installation

Manual:

Update your Package.swift file:

let package = Package(
  ...,

  dependencies: [
    .package(
      url: "https://github.com/markvanwijnen/NavigationBarLargeTitleItems.git",
      from: "1.0.0"),

    ...
  ],

  ...
)

In Xcode:

  1. Go to File > Swift Packages > Add Package Depencency...
  2. Enter https://github.com/markvanwijnen/NavigationBarLargeTitleItems.git as the URL
  3. Select your desired versioning constraint
  4. Click Next
  5. Click Finish

Usage

import SwiftUI
import NavigationBarLargeTitleItems

struct ContentView: View {
    var body: some View {
        NavigationView {
            List {
                ForEach(1..<50) { index in
                    Text("Sample Row \(String(index))")
                }
            }
            .navigationTitle("Navigation")
            .navigationBarLargeTitleItems(trailing: ProfileIcon())
        }
    }
}

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}

struct ProfileIcon: View {
    var body: some View{
        Button(action: {
            print("Profile button was tapped")
        }) {
            Image(systemName: "person.circle.fill")
                .resizable()
                .aspectRatio(contentMode: .fit)
                .foregroundColor(.red)
                .frame(width: 36, height: 36)
        }
        .padding([.trailing], 20)
        .padding([.top], 5)
    }
}

About

An extension to SwiftUI that will allow items to be placed next to the navigation bar large title.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages