chore(mobile): minor UI tweak (#3021)

* chore(mobile): minor UI tweak

* fix test

* refactor
This commit is contained in:
Alex
2023-06-28 22:33:57 -05:00
committed by GitHub
parent e5908f2508
commit 8e6c90e294
13 changed files with 116 additions and 91 deletions

View File

@@ -23,7 +23,14 @@ class PartnerList extends HookConsumerWidget {
return ListTile(
contentPadding: const EdgeInsets.symmetric(horizontal: 12.0),
leading: userAvatar(context, p, radius: 30),
title: Text("${p.firstName} ${p.lastName}"),
title: Text(
"${p.firstName} ${p.lastName}'s photos",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 14,
color: Theme.of(context).primaryColor,
),
),
onTap: () => AutoRouter.of(context).push(PartnerDetailRoute(partner: p)),
);
}