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, transitionType: ContainerTransitionType.fadeThrough,
openColor: Colors.transparent, openColor: Colors.transparent,
tappable: false, tappable: false,
closedBuilder: (context, action) => FocusButton( closedBuilder: (context, action) => Card(
onTap: () => action(), child: FocusButton(
child: FladderImage( onTap: () => action(),
image: person.image, child: FladderImage(
placeHolder: placeHolder(person.name), image: person.image,
fit: BoxFit.cover, placeHolder: placeHolder(person.name),
fit: BoxFit.cover,
),
), ),
), ),
openBuilder: (context, action) => PersonDetailScreen( openBuilder: (context, action) => PersonDetailScreen(