forked from Cutlery/immich
		
	* dep(mobile): update flutter and deps * chore: dart analyzer * chore: update flutter workflow version * chore: dart format * fix: gallery_viewer PopScope --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:auto_route/auto_route.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| import 'package:hooks_riverpod/hooks_riverpod.dart';
 | |
| import 'package:immich_mobile/extensions/build_context_extensions.dart';
 | |
| import 'package:immich_mobile/routing/router.dart';
 | |
| import 'package:immich_mobile/shared/models/user.dart';
 | |
| import 'package:immich_mobile/shared/ui/user_avatar.dart';
 | |
| 
 | |
| class PartnerList extends HookConsumerWidget {
 | |
|   const PartnerList({super.key, required this.partner});
 | |
| 
 | |
|   final List<User> partner;
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context, WidgetRef ref) {
 | |
|     return SliverList(
 | |
|       delegate:
 | |
|           SliverChildBuilderDelegate(listEntry, childCount: partner.length),
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   Widget listEntry(BuildContext context, int index) {
 | |
|     final User p = partner[index];
 | |
|     return ListTile(
 | |
|       contentPadding: const EdgeInsets.only(
 | |
|         left: 12.0,
 | |
|         right: 18.0,
 | |
|       ),
 | |
|       leading: userAvatar(context, p, radius: 24),
 | |
|       title: Text(
 | |
|         "${p.name}'s photos",
 | |
|         style: context.textTheme.labelLarge,
 | |
|       ),
 | |
|       trailing: Text(
 | |
|         "View all",
 | |
|         style: context.textTheme.labelLarge?.copyWith(
 | |
|           color: context.primaryColor,
 | |
|         ),
 | |
|       ),
 | |
|       onTap: () => context.pushRoute((PartnerDetailRoute(partner: p))),
 | |
|     );
 | |
|   }
 | |
| }
 |