Files
apidash/lib/widgets/empty_message.dart
2025-09-11 01:22:28 +05:30

45 lines
1.1 KiB
Dart

import 'package:flutter/material.dart';
class EmptyMessage extends StatelessWidget {
const EmptyMessage({
super.key,
this.title = 'No logs yet',
this.subtitle = 'Send a request to view its details in the console.',
this.icon,
});
final String title;
final String subtitle;
final IconData? icon;
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
if (icon != null) ...[
Icon(icon, size: 36, color: theme.colorScheme.outline),
const SizedBox(height: 8),
],
Text(
title,
style: theme.textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: 6),
Text(
subtitle,
style: theme.textTheme.bodyMedium?.copyWith(
color: theme.colorScheme.outline,
),
textAlign: TextAlign.center,
),
],
),
);
}
}