You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+132-40
Original file line number
Diff line number
Diff line change
@@ -37,52 +37,39 @@ AdvancedList(yourData, content: { item in
37
37
38
38
### 📄 Pagination
39
39
40
-
The `Pagination` is implemented as a class (conforming to `ObservableObject`) so the `AdvancedList` can observe it.
41
-
It has three different states: `error`, `idle` and `loading`. If the `state` of the `Pagination` changes the `AdvancedList`updates itself to show or hide the state related view (`ErrorView` for state `.error(Error)` or `LoadingView` for state `.loading`, `.idle` will display nothing). Update the `state` if you start loading (`.loading`), stop loading ( `.idle`) or if an error occurred (`.error(Error)`) so the `AdvancedList` can render the appropriate view.
40
+
The `Pagination`functionality is now (>= `5.0.0`) implemented as a `modifier`.
41
+
It has three different states: `error`, `idle` and `loading`. If the `state` of the `Pagination` changes the `AdvancedList`displays the view created by the view builder of the specified pagination object (`AdvancedListPagination`). Keep track of the current pagination state by creating a local state variable (`@State`) of type `AdvancedListPaginationState`. Use this state variable in the `content``ViewBuilder` of your pagination configuration object to determine which view should be displayed in the list (see the example below).
42
42
43
-
If you want to use pagination you can choose between the `lastItemPagination` and the `thresholdItemPagination`. Both concepts are described [here](https://github.com/crelies/ListPagination). Just pass `.lastItemPagination` or `.thresholdItemPagination` including the required parameters to the`AdvancedList` initializer.
43
+
If you want to use pagination you can choose between the `lastItemPagination` and the `thresholdItemPagination`. Both concepts are described [here](https://github.com/crelies/ListPagination). Just specify the type of the pagination when adding the `.pagination` modifier to your`AdvancedList`.
44
44
45
-
Both pagination types require
46
-
47
-
- an **ErrorView** and a **LoadingView** (**ViewBuilder**)
48
-
- a block (**shouldLoadNextPage**) which is called if the `last or threshold item appeared` and
49
-
- the initial state (**AdvancedListPaginationState**) of the pagination which determines the visibility of the pagination state related view.
50
-
51
-
The `thresholdItemPagination` expects an offset parameter (number of items before the last item) to determine the threshold item.
52
-
53
-
**The ErrorView or LoadingView will only be visible below the List if the last item of the List appeared! That way the user is only interrupted if needed.**
54
-
55
-
**Skip pagination setup by using `.noPagination`.**
45
+
**The view created by the `content``ViewBuilder` of your pagination configuration object will only be visible below the List if the last item of the List appeared! That way the user is only interrupted if needed.**
0 commit comments