PagedValueScrollViewIndexedWidgetBuilder<T> typedef

PagedValueScrollViewIndexedWidgetBuilder<T> = Widget Function(BuildContext context, List<T> values, int index)

Signature for a function that creates a widget for a given index, e.g., in a PagedValueListView and PagedValueGridView.

Implementation

typedef PagedValueScrollViewIndexedWidgetBuilder<T> = Widget Function(
  BuildContext context,
  List<T> values,
  int index,
);