feat: Add greeting message to unit list screen

Co-authored-by: aider (openrouter/deepseek/deepseek-r1:free) <aider@aider.chat>
This commit is contained in:
Álvaro González 2025-09-09 10:05:53 +02:00
parent becfd56c30
commit 587d41f5c5

View file

@ -110,6 +110,16 @@ class _UnitListState extends State<UnitList> {
},
),
),
Padding(
padding: const EdgeInsets.all(16.0),
child: Text('hello Informáticos',
style: TextStyle(
fontSize: 18,
color: Theme.of(context).colorScheme.primary,
fontWeight: FontWeight.bold,
),
),
),
],
),
);