```dart import 'package:flutter/material.dart'; class OrdersEmptyState extends StatelessWidget { const OrdersEmptyState({super.key}); @override Widget build(BuildContext context) { final theme = Theme.of(context); return Center( child: Padding( padding: const EdgeInsets.all(24), child: Column( mainAxisSize: MainAxisSize.min, children: [ _EmptyStateIcon(color: theme.colorScheme.primary), const SizedBox(height: 12), Text( 'No orders yet', style: theme.textTheme.titleMedium, textAlign: TextAlign...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill flutter-widgets --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Flutter Widgets?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-flutter-widgets-fe140ec8)More formats (shields.io, HTML) on the badges page.
```dart
import 'package:flutter/material.dart';
class OrdersEmptyState extends StatelessWidget {
const OrdersEmptyState({super.key});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Center(
child: Padding(
padding: const EdgeInsets.all(24),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
_EmptyStateIcon(color: theme.colorScheme.primary),
const SizedBox(height: 12),
Text(
'No orders yet',
style: theme.textTheme.titleMedium,
textAlign: TextAlign.center,
),
],
),
),
);
}
}
class _EmptyStateIcon extends StatelessWidget {
final Color color;
const _EmptyStateIcon({required this.color});
@override
Widget build(BuildContext context) {
return Icon(
Icons.receipt_long_outlined,
size: 48,
color: color,
);
}
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!