mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
34 lines
825 B
Dart
34 lines
825 B
Dart
import 'package:comunic/models/user.dart';
|
|
import 'package:comunic/ui/widgets/account_image_widget.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
/// Simple user tile
|
|
///
|
|
/// Basically this only shows the name of the user + its account image
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
typedef OnUserTap = void Function(User);
|
|
|
|
class SimpleUserTile extends StatelessWidget {
|
|
final User user;
|
|
final OnUserTap onTap;
|
|
final Widget trailing;
|
|
|
|
const SimpleUserTile({Key key, this.user, this.onTap, this.trailing})
|
|
: assert(user != null),
|
|
super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ListTile(
|
|
onTap: onTap == null ? null : () => onTap(user),
|
|
leading: AccountImageWidget(
|
|
user: user,
|
|
),
|
|
title: Text(user.fullName),
|
|
trailing: trailing,
|
|
);
|
|
}
|
|
}
|