buildEmptyState method
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,
),
),
);
}