Files
2026-02-26 20:49:21 -05:00

24 lines
615 B
Dart

import 'package:flutter/material.dart';
class EmptyState extends StatelessWidget {
const EmptyState({super.key});
@override
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.checklist, size: 80, color: Colors.grey.shade400),
const SizedBox(height: 16),
Text(
'No todos yet!\nTap + to add one',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 18, color: Colors.grey.shade600),
),
],
),
);
}
}