From 82d78452e03f168f662c6e9deb1ce475ca53ae92 Mon Sep 17 00:00:00 2001 From: wcjord <32568597+wcjord@users.noreply.github.com> Date: Fri, 23 May 2025 10:39:47 -0400 Subject: [PATCH] 2884-chat-list-header-tweaks (#2885) * fix(chat_list_header): simplify search text and spacing * chore: formatting --------- Co-authored-by: ggurdin --- lib/pangea/chat_list/widgets/pangea_chat_list_header.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pangea/chat_list/widgets/pangea_chat_list_header.dart b/lib/pangea/chat_list/widgets/pangea_chat_list_header.dart index 4604209dd..51dff54fe 100644 --- a/lib/pangea/chat_list/widgets/pangea_chat_list_header.dart +++ b/lib/pangea/chat_list/widgets/pangea_chat_list_header.dart @@ -28,11 +28,11 @@ class PangeaChatListHeader extends StatelessWidget top: 16, left: 16, right: 16, + bottom: 16, ), child: Column( children: [ const LearningProgressIndicators(), - const SizedBox(height: 16), TextField( controller: controller.searchController, focusNode: controller.searchFocusNode, @@ -49,7 +49,7 @@ class PangeaChatListHeader extends StatelessWidget borderRadius: BorderRadius.circular(99), ), contentPadding: EdgeInsets.zero, - hintText: L10n.of(context).searchChatsRooms, + hintText: L10n.of(context).search, hintStyle: TextStyle( color: theme.colorScheme.onPrimaryContainer, fontWeight: FontWeight.normal,