This commit is contained in:
2026-02-26 20:49:21 -05:00
parent bebcf48a32
commit 4d9e715361
243 changed files with 25648 additions and 14573 deletions
+23
View File
@@ -0,0 +1,23 @@
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),
),
],
),
);
}
}