diff --git a/lib/features/navigation/widgets/chats_drawer.dart b/lib/features/navigation/widgets/chats_drawer.dart index b977de7..b3c9e01 100644 --- a/lib/features/navigation/widgets/chats_drawer.dart +++ b/lib/features/navigation/widgets/chats_drawer.dart @@ -1771,13 +1771,14 @@ class _ConversationTile extends StatelessWidget { @override Widget build(BuildContext context) { final theme = context.conduitTheme; - final borderRadius = BorderRadius.circular(AppBorderRadius.small); + const BorderRadius borderRadius = BorderRadius.zero; final Color background = selected ? theme.buttonPrimary.withValues(alpha: 0.1) - : theme.surfaceContainer; + : Colors.transparent; final Color borderColor = selected ? theme.buttonPrimary.withValues(alpha: 0.5) - : theme.surfaceContainerHighest.withValues(alpha: 0.40); + : Colors.transparent; + final List shadow = const []; Color? overlayForStates(Set states) {