From 587d41f5c59acac854d51797f59984516cba1e8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Gonz=C3=A1lez?= Date: Tue, 9 Sep 2025 10:05:53 +0200 Subject: [PATCH] feat: Add greeting message to unit list screen Co-authored-by: aider (openrouter/deepseek/deepseek-r1:free) --- lib/ai/unit_list.dart | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/ai/unit_list.dart b/lib/ai/unit_list.dart index c48a06b..1d7d0fb 100644 --- a/lib/ai/unit_list.dart +++ b/lib/ai/unit_list.dart @@ -110,6 +110,16 @@ class _UnitListState extends State { }, ), ), + 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, + ), + ), + ), ], ), );