32 lines
No EOL
1.2 KiB
Dart
32 lines
No EOL
1.2 KiB
Dart
import 'package:contacts_plus_plus/auxiliary.dart';
|
|
import 'package:contacts_plus_plus/models/friend.dart';
|
|
import 'package:contacts_plus_plus/widgets/generic_avatar.dart';
|
|
import 'package:contacts_plus_plus/widgets/messages_list.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:intl/intl.dart';
|
|
|
|
class FriendListTile extends StatelessWidget {
|
|
const FriendListTile({required this.friend, this.unreads, this.onTap, super.key});
|
|
|
|
final Friend friend;
|
|
final int? unreads;
|
|
final Function? onTap;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final imageUri = Aux.neosDbToHttp(friend.userProfile.iconUrl);
|
|
final theme = Theme.of(context);
|
|
return ListTile(
|
|
leading: GenericAvatar(imageUri: imageUri,),
|
|
trailing: unreads != null && unreads != 0
|
|
? Text("+$unreads", style: theme.textTheme.bodyMedium?.copyWith(color: theme.colorScheme.primary),)
|
|
: null,
|
|
title: Text(friend.username),
|
|
subtitle: Text(toBeginningOfSentenceCase(friend.userStatus.onlineStatus.name) ?? "Unknown"),
|
|
onTap: () async {
|
|
Navigator.of(context).push(MaterialPageRoute(builder: (context) => MessagesList(friend: friend)));
|
|
await onTap?.call();
|
|
},
|
|
);
|
|
}
|
|
} |