From 4befc85c9f9492b6bb3ce0eaa412aba9cf7a1354 Mon Sep 17 00:00:00 2001 From: mathiskirchner Date: Sun, 16 Nov 2025 19:52:31 +0100 Subject: [PATCH] added missing const --- lib/presentation/widgets/top_centered_message.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/widgets/top_centered_message.dart b/lib/presentation/widgets/top_centered_message.dart index af317d8..a5deea2 100644 --- a/lib/presentation/widgets/top_centered_message.dart +++ b/lib/presentation/widgets/top_centered_message.dart @@ -21,7 +21,7 @@ class TopCenteredMessage extends StatelessWidget { child: Column( children: [ Icon(icon, size: 45), - SizedBox(height: 10), + const SizedBox(height: 10), Text( title, style: const TextStyle(fontSize: 18, fontWeight: FontWeight.bold),