-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavigationLink_Example.swift
57 lines (39 loc) · 1.36 KB
/
NavigationLink_Example.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
// NavigationLink_Example.swift
// Preview-Target
//
// Created by Shunzhe Ma on R 2/10/14.
//
import SwiftUI
struct NavigationLink_Example: View {
let myCats = ["ネコノヒー", "ムギ", "レオ"]
var body: some View {
/*
`NavigationLink` を使用するには、このビューを `NavigationView` に含める必要があります。
*/
NavigationView {
Form {
List(self.myCats, id: \.self) { catName in
NavigationLink(
destination: AnotherView(textContent: catName),
label: {
//ここには、Text、Image、表の行の内容など、あらゆる種類のコンポーネントを追加できます。
Text("別のビューを表示")
})
}
}
.navigationBarTitle("私の猫たち", displayMode: .inline)
}
}
}
fileprivate struct AnotherView: View {
var textContent: String
var body: some View {
Text(textContent)
}
}
struct NavigationLink_Example_Previews: PreviewProvider {
static var previews: some View {
NavigationLink_Example()
}
}