We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9adb379 commit f3ed518Copy full SHA for f3ed518
README.md
@@ -43,14 +43,14 @@ Upgrade from version `5.0.0` **without breaking anything**. Simply add the **lis
43
44
```swift
45
AdvancedList(yourData, listView: { rows in
46
- if #available(iOS 14, macOS 11, *) {
47
- ScrollView {
48
- LazyVStack(alignment: .leading, content: rows)
49
- .padding()
50
- }
51
- } else {
52
- List(content: rows)
53
+ if #available(iOS 14, macOS 11, *) {
+ ScrollView {
+ LazyVStack(alignment: .leading, content: rows)
+ .padding()
+ }
+ } else {
+ List(content: rows)
54
}, content: { item in
55
Text("Item")
56
}, listState: $listState, emptyStateView: {
0 commit comments