Compare commits

...

2 Commits

Author SHA1 Message Date
renovate[bot]
2781c1d2f7 chore(deps): update dependency flutter to v3.41.5 2026-03-23 17:35:02 +00:00
Yaros
0e93aa74cf fix(mobile): add keys to people list (#27112)
mobile(fix): add keys to people list
2026-03-23 10:50:56 -05:00
2 changed files with 3 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ config_roots = [
[tools]
node = "24.13.1"
flutter = "3.35.7"
flutter = "3.41.5"
pnpm = "10.30.3"
terragrunt = "0.99.4"
opentofu = "1.11.5"

View File

@@ -79,6 +79,7 @@ class _DriftPeopleCollectionPageState extends ConsumerState<DriftPeopleCollectio
final person = people[index];
return Column(
key: ValueKey(person.id),
children: [
GestureDetector(
onTap: () {
@@ -88,6 +89,7 @@ class _DriftPeopleCollectionPageState extends ConsumerState<DriftPeopleCollectio
shape: const CircleBorder(side: BorderSide.none),
elevation: 3,
child: CircleAvatar(
key: ValueKey('avatar-${person.id}'),
maxRadius: isTablet ? 100 / 2 : 96 / 2,
backgroundImage: RemoteImageProvider(url: getFaceThumbnailUrl(person.id)),
),