willBuildListViewForCategory abstract method

Widget? willBuildListViewForCategory(
  1. FastListViewLayout<FastItem> listViewLayout,
  2. FastListItemCategory<T> category
)

Builds the list view for the given category of items

The listViewLayout argument can be used to acces its public method and the category argument provides information about the category, such as its title and items. This method should return a widget that represents the view for the given category.

Implementation

Widget? willBuildListViewForCategory(
  FastListViewLayout listViewLayout,
  FastListItemCategory<T> category,
);