-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathListView.swift
43 lines (35 loc) · 875 Bytes
/
ListView.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
import SwiftUI
import SherlockForms
/// Simple `SwiftUI.List` example.
struct ListView: View, SherlockView
{
@State public private(set) var searchText: String = ""
@State private var items: [ListItem] = (0 ... 3).map { ListItem(content: "Row \($0)") }
var body: some View
{
SherlockForm(searchText: $searchText) {
simpleList(
data: items,
rowContent: { item in
Text("\(item.content)")
}
)
}
.navigationBarTitleDisplayMode(.inline)
.formCellCopyable(true)
}
}
// MARK: - Previews
struct ListView_Previews: PreviewProvider
{
static var previews: some View
{
ListView()
}
}
// MARK: - Private
private struct ListItem: SimpleListItem, Identifiable
{
let content: String
var id: String { content }
}