fix(ui): increase avatar size in CoupleSelectorBandeau

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-24 00:38:32 +02:00
co-authored by Cursor
parent 138398a4a0
commit a88f791317
@@ -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,
),