fullViewEmptyState method
dynamic
fullViewEmptyState( - dynamic context,
- dynamic color
)
Implementation
Widget fullViewEmptyState(BuildContext context, Color color) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Atlas.chats, color: color, size: 52),
const SizedBox(height: 16),
Text(
L10n.of(context).commentEmptyStateTitle,
style: Theme.of(
context,
).textTheme.titleMedium?.copyWith(color: color),
),
Text(
L10n.of(context).commentEmptyStateAction,
style: Theme.of(context).textTheme.labelLarge?.copyWith(color: color),
),
],
);
}