From cdf81276b25817aca301ed4d63a2402c0914f03a Mon Sep 17 00:00:00 2001 From: ggurdin Date: Thu, 12 Jun 2025 11:36:33 -0400 Subject: [PATCH] chore: delete button styling --- lib/pages/chat_list/space_view.dart | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/lib/pages/chat_list/space_view.dart b/lib/pages/chat_list/space_view.dart index bfcabd8d6..b38c42b70 100644 --- a/lib/pages/chat_list/space_view.dart +++ b/lib/pages/chat_list/space_view.dart @@ -700,9 +700,20 @@ class _SpaceViewState extends State { child: Row( mainAxisSize: MainAxisSize.min, children: [ - const Icon(Icons.delete_outlined), + Icon( + Icons.delete_outlined, + color: + Theme.of(context).colorScheme.onErrorContainer, + ), const SizedBox(width: 12), - Text(L10n.of(context).delete), + Text( + L10n.of(context).delete, + style: TextStyle( + color: Theme.of(context) + .colorScheme + .onErrorContainer, + ), + ), ], ), ),