Skip to main content

How to embed a view in a navigation view

About 2 minSwiftSwiftUIArticle(s)bloghackingwithswift.comcrashcourseswiftswiftuixcodeappstore

How to embed a view in a navigation view 관련

SwiftUI by Example

Back to Home

How to embed a view in a navigation view | SwiftUI by Example

How to embed a view in a navigation view

Updated for Xcode 15

SwiftUI's NavigationStack maps more or less to UIKit's UINavigationController in that it presents content, it's able to handle navigation between views, and it places a navigation bar at the top of the screen.

In its simplest form you can place a text view into a navigation stack like this:

struct ContentView: View {
    var body: some View { 
        NavigationStack {
            Text("This is a great app")
        }
    }
}

Download this as an Xcode projectopen in new window

However, that leaves the navigation bar at the top empty. So, you will usually use the navigationTitle() modifier on whatever you're embedding, so you can add a title at the top of your screen, like this:

struct ContentView: View {
    var body: some View { 
        NavigationStack {
            Text("SwiftUI")
                .navigationTitle("Welcome")
        }
    }
}

Download this as an Xcode projectopen in new window

There is a second modifier, navigationBarTitleDisplayMode(), that gives us control over whether to use large titles or smaller, inline ones. For example, by default views will inherit their large title display mode from whatever view presented them, or if it's the initial view then it will use large titles. But if you'd prefer to enable or disable large titles manually you should use .navigationBarTitleDisplayMode() like this:

struct ContentView: View {
    var body: some View { 
        NavigationStack {
            Text("SwiftUI")
                .navigationTitle("Welcome")
                .navigationBarTitleDisplayMode(.inline)
        }
    }
}

Download this as an Xcode projectopen in new window

That will make small navigation titles, but you can also use .large to force a large title.

A row of four phones showing NavigationStacks. From left to right, they have no title, the default large, left-aligned title style, a smaller, centered title style, and the large, left-aligned title style respectively.
A row of four phones showing NavigationStacks. From left to right, they have no title, the default large, left-aligned title style, a smaller, centered title style, and the large, left-aligned title style respectively.
Similar solutions…
How to embed views in a tab bar using TabView | SwiftUI by Example

How to embed views in a tab bar using TabView
SwiftUI tips and tricks | SwiftUI by Example

SwiftUI tips and tricks
How to convert a SwiftUI view to an image | SwiftUI by Example

How to convert a SwiftUI view to an image
How to create and compose custom views | SwiftUI by Example

How to create and compose custom views
How to preview your layout in a navigation view | SwiftUI by Example

How to preview your layout in a navigation view

이찬희 (MarkiiimarK)
Never Stop Learning.