From 349806f313b0e6ff6efe98aa67b1f8f45cab39a2 Mon Sep 17 00:00:00 2001 From: cogwheel0 <172976095+cogwheel0@users.noreply.github.com> Date: Fri, 3 Oct 2025 00:27:22 +0530 Subject: [PATCH] refactor: adjust border radius in chat drawer components - Changed the border radius in _ConversationDragFeedback and _ConversationTile from a circular value to zero for a more squared appearance. - This update enhances the visual consistency of the chat drawer components across the application. --- lib/features/navigation/widgets/chats_drawer.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/features/navigation/widgets/chats_drawer.dart b/lib/features/navigation/widgets/chats_drawer.dart index 8b32d2a..fc508d4 100644 --- a/lib/features/navigation/widgets/chats_drawer.dart +++ b/lib/features/navigation/widgets/chats_drawer.dart @@ -1459,7 +1459,7 @@ class _ConversationDragFeedback extends StatelessWidget { @override Widget build(BuildContext context) { - final borderRadius = BorderRadius.circular(AppBorderRadius.navigation); + final borderRadius = BorderRadius.zero; final borderColor = theme.surfaceContainerHighest.withValues(alpha: 0.40); return Material( @@ -1622,7 +1622,7 @@ class _ConversationTile extends StatelessWidget { Widget build(BuildContext context) { final theme = context.conduitTheme; final brightness = Theme.of(context).brightness; - final borderRadius = BorderRadius.circular(AppBorderRadius.navigation); + final borderRadius = BorderRadius.zero; final Color background = selected ? theme.buttonPrimary.withValues( alpha: brightness == Brightness.dark ? 0.28 : 0.16,