noItemsFoundIndicatorBuilder method

Widget noItemsFoundIndicatorBuilder(
  1. BuildContext context
)

Builds the indicator shown when no items are found.

Override this method to customize the no items found indicator.

Implementation

Widget noItemsFoundIndicatorBuilder(BuildContext context) {
  return const EmptyComponent(
    title: 'Không có dữ liệu',
  );
}