buildEmptyListIndicator method

Widget buildEmptyListIndicator(
  1. BuildContext context
)

Builds the indicator shown when the list is empty.

Override this method to customize the empty list indicator.

Implementation

Widget buildEmptyListIndicator(BuildContext context) {
  return const EmptyComponent(
    title: 'Chưa có dữ liệu',
  );
}