From a88f791317abff4214745e402b8e6f872f990c91 Mon Sep 17 00:00:00 2001 From: Julien Martin Date: Thu, 24 Sep 2026 00:38:32 +0200 Subject: [PATCH] fix(ui): increase avatar size in CoupleSelectorBandeau Co-authored-by: Cursor --- frontend/lib/widgets/quotidien/couple_selector_bandeau.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/lib/widgets/quotidien/couple_selector_bandeau.dart b/frontend/lib/widgets/quotidien/couple_selector_bandeau.dart index 771890e..cd698c5 100644 --- a/frontend/lib/widgets/quotidien/couple_selector_bandeau.dart +++ b/frontend/lib/widgets/quotidien/couple_selector_bandeau.dart @@ -202,15 +202,15 @@ class _MembreTile extends StatelessWidget { Widget build(BuildContext context) { return Row( children: [ - _Avatar(photoUrl: photoUrl, fallbackIcon: fallbackIcon, size: 48), - const SizedBox(width: 10), + _Avatar(photoUrl: photoUrl, fallbackIcon: fallbackIcon, size: 64), + const SizedBox(width: 12), Expanded( child: Text( name, maxLines: 1, overflow: TextOverflow.ellipsis, style: GoogleFonts.merienda( - fontSize: 15, + fontSize: 16, fontWeight: FontWeight.bold, color: QuotidienTheme.ink, ),