fix: People row bug fix

This commit is contained in:
PartyDonut 2025-10-03 20:17:22 +02:00
parent f313c7d138
commit fd35ffb004

View file

@ -63,12 +63,14 @@ class PeopleRow extends ConsumerWidget {
transitionType: ContainerTransitionType.fadeThrough,
openColor: Colors.transparent,
tappable: false,
closedBuilder: (context, action) => FocusButton(
onTap: () => action(),
child: FladderImage(
image: person.image,
placeHolder: placeHolder(person.name),
fit: BoxFit.cover,
closedBuilder: (context, action) => Card(
child: FocusButton(
onTap: () => action(),
child: FladderImage(
image: person.image,
placeHolder: placeHolder(person.name),
fit: BoxFit.cover,
),
),
),
openBuilder: (context, action) => PersonDetailScreen(