This repo is collection of SwiftUI examples and blog posts explaining the examples.
All posts are on my Medium.com profile. I'd really appreciate it if you read the posts there! If you can't for some reason or another, feel free to read them from this repo.
To add a NavigationView that looks like a list, we first need to embed the Text in a List. Embedding in a List can be done by CMD + Click on Text and choosing Embed in List from the menu.
If using the Live Preview in Xcode, then the preview should look like the picture below.
Let's also make the list different on each row. Change the string in the text to say "Navigation Link (item)" and make the list range 1 to 5 instead of 0 to 5.
This is what the code should look like.
List(1..<5){iteminText("Navigation Link \(item)")}
Here is what the preview will look like
3. Add a NavigationLink
The Text needs to be inside a NavigationLink in order to navigate to a different view. We will use NavigationLink(destination: Destination, tag: Hashable, selection: Binding<Hashable?>, label: () -> Label).
Let's break this down a bit before implementing it.
destination the View to present when the link is selected
tag a value that is of type Hashable to distinguish between which link is selected
To read more about Hashable click here. The link will take you to Apple's documentation about Hashable.
selection a variable that is an optional Hashable type that will change values to the tag
label a closure that returns a View which is what the user will see and be able to click on.
Now that all the parts are explained let's implement the NavigationLink.
List(1..<5){iteminNavigationLink(destination:Text("Destination \(item)"),tag:item,selection:self.$selectedView){Text("Navigation Link \(item)")}}
Once it's implemented, you should get an error that says Use of unresolved identifier '$selectedView'. This error is expected since we do not have a Binding variable called selectedView in our code. Let's add it to the ContentView struct.
Place @State private var selectedView: Int? = 0 before declaring body. The error should go away now. When declaring selectedView, the type needs to be optional since NavigationLink wants an optional Hashable type.
As of right now, running the app, it will look like no default view is given. This is because there is no NavigationLink with a tag of 0. If selectedView is assigned a tag that doesn't exist, then the view will be the list of NavigationLinks.
If you change the initial value of selectedView to 1, then it will open to the destination of NavigationLink that has a tag of 1.
Basics are done!
Now the basic tutorial is finished of how to achieve this. I'm going to continue in the next section on how to improve the UX because on iOS this is not excellent behavior, but on iPadOS when in landscape, this behavior is excellent!
Bettering the UX
On iPhones, you don't usually want the total view to be taken over. You usually want the user to decide where to navigate. On iPads in landscape, the screen is so big that having a view selected is okay since the navigation links are always shown. This can be achieved by using onAppear() and figuring out which device is being used.
First, we need to add onAppear() to the List. Then, we need to get the device type.
NavigationView{List(1..<5){iteminNavigationLink(destination:Text("Destination \(item)"),tag:item,selection:self.$selectedView){Text("Navigation Link \(item)")}}// this is the part to add.onAppear{letdevice=UIDevice.current}}
Now, we need to do something based on each device. We can get the device type by using .model. We can then use a simple if statement to determine if it's an iPhone or an iPad and set the selection based on that. We also need to check the orientation of the iPad.