0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SwiftUI NavigationStack

Posted at
enum Fruit: String, Hashable, CaseIterable {
    case apple
    case orange
    case mango

    var name: String {
        rawValue
    }
}

struct ContentView: View {
    var body: some View {
        NavigationStack {
            List {
                NavigationLink(Fruit.apple.name, value: Fruit.apple)
                NavigationLink(Fruit.orange.name, value: Fruit.orange)
                NavigationLink(Fruit.mango.name, value: Fruit.mango)
            }
            .navigationTitle("Fruits")
            .navigationDestination(for: Fruit.self) { fruit in
                FruitDetail(fruit: fruit)
            }
        }
    }

    struct FruitDetail: View {
        var fruit: Fruit
        
        var body: some View {
            Text("Detail of \(fruit.name)")
        }
    }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?