mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-09 07:28:14 -07:00
fix: People row bug fix
This commit is contained in:
parent
f313c7d138
commit
fd35ffb004
1 changed files with 8 additions and 6 deletions
|
|
@ -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(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue