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) { Widget build(BuildContext context) {
return Row( return Row(
children: [ children: [
_Avatar(photoUrl: photoUrl, fallbackIcon: fallbackIcon, size: 48), _Avatar(photoUrl: photoUrl, fallbackIcon: fallbackIcon, size: 64),
const SizedBox(width: 10), const SizedBox(width: 12),
Expanded( Expanded(
child: Text( child: Text(
name, name,
maxLines: 1, maxLines: 1,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
style: GoogleFonts.merienda( style: GoogleFonts.merienda(
fontSize: 15, fontSize: 16,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: QuotidienTheme.ink, color: QuotidienTheme.ink,
), ),