55 lines
1.6 KiB
Dart
55 lines
1.6 KiB
Dart
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
import 'package:fluffychat/utils/string_color.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'matrix.dart';
|
|
|
|
class Avatar extends StatelessWidget {
|
|
final MxContent mxContent;
|
|
final String name;
|
|
final double size;
|
|
final Function onTap;
|
|
|
|
const Avatar(this.mxContent, this.name, {this.size = 40, this.onTap, Key key})
|
|
: super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final String src = mxContent.getThumbnail(
|
|
Matrix.of(context).client,
|
|
width: size * MediaQuery.of(context).devicePixelRatio,
|
|
height: size * MediaQuery.of(context).devicePixelRatio,
|
|
method: ThumbnailMethod.scale,
|
|
);
|
|
String fallbackLetters = "@";
|
|
if ((name?.length ?? 0) >= 2) {
|
|
fallbackLetters = name.substring(0, 2);
|
|
} else if ((name?.length ?? 0) == 1) {
|
|
fallbackLetters = name;
|
|
}
|
|
return InkWell(
|
|
onTap: onTap,
|
|
child: CircleAvatar(
|
|
radius: size / 2,
|
|
backgroundImage: mxContent.mxc?.isNotEmpty ?? false
|
|
? kIsWeb
|
|
? NetworkImage(
|
|
src,
|
|
)
|
|
: CachedNetworkImageProvider(
|
|
src,
|
|
)
|
|
: null,
|
|
backgroundColor: mxContent.mxc.isEmpty
|
|
? name?.color ?? Theme.of(context).secondaryHeaderColor
|
|
: Theme.of(context).secondaryHeaderColor,
|
|
child: mxContent.mxc.isEmpty
|
|
? Text(fallbackLetters, style: TextStyle(color: Colors.white))
|
|
: null,
|
|
),
|
|
);
|
|
}
|
|
}
|