Paginated Listview Widget
Last updated
Last updated
A paginated list view is a way to display a large set of data in a user-friendly manner.
Children: This is the core part of the paginated list view. It represents the actual list items that will be displayed on the screen. These children widgets are typically built based on the data you provide for each page. Additionally, you can insert multiple widgets inside Children.
First Page Loading Widget: This widget is displayed while the initial data for the first page is being fetched. It provides visual feedback to the user that something is happening and helps avoid a blank screen. It could be a simple progress bar, a loading indicator, or even an informative message. Moreover, First Page Loading Widget can only consist single widget. Unlike to Children.
New Page Loading Widget: This widget is displayed when the user scrolls near the end of the current page and a new page is being loaded. Similar to the first page loading widget, it provides feedback that more data is being retrieved (It consist only single widget).
Page Error Widget: This widget is displayed in case there's an error while fetching data for a page. It allows you to inform the user about the issue and potentially offer options like retrying or contacting support. Similar to First Page Loading Widget you can add only single widget inside Page Error Widget
Note: You can multiple widget inside First Page Loading Widget, New Page Loading Widget and Page Error Widget. Below you can refer the example.
You can customize Paginated widget according to you requirements:
By Navigating to Default Properties you can customize Styling.