buildEmptyState method

Widget buildEmptyState(
  1. ThemeData theme
)

Implementation

Widget buildEmptyState(ThemeData theme) {
  return Center(
    child: Padding(
      padding: EdgeInsets.all(XfdnDesignSystem.settings.paddingDefault),
      child: XfdnText(
        'Não há registros para serem mostrados',
        textColor: theme.colorScheme.onSurfaceVariant,
      ),
    ),
  );
}