Fix avatar

This commit is contained in:
Christian Pauly 2020-05-01 12:14:49 +02:00
parent ddf2eb3204
commit 81287ccfe1
1 changed files with 5 additions and 4 deletions

View File

@ -23,7 +23,7 @@ class Avatar extends StatelessWidget {
@override
Widget build(BuildContext context) {
final String src = mxContent.getThumbnail(
final String src = mxContent?.getThumbnail(
Matrix.of(context).client,
width: size * MediaQuery.of(context).devicePixelRatio,
height: size * MediaQuery.of(context).devicePixelRatio,
@ -35,20 +35,21 @@ class Avatar extends StatelessWidget {
} else if ((name?.length ?? 0) == 1) {
fallbackLetters = name;
}
final noPic = mxContent == null || mxContent.toString().isEmpty;
return InkWell(
onTap: onTap,
child: CircleAvatar(
radius: size / 2,
backgroundImage: mxContent != null
backgroundImage: !noPic
? AdvancedNetworkImage(
src,
useDiskCache: !kIsWeb,
)
: null,
backgroundColor: mxContent == null
backgroundColor: noPic
? name?.color ?? Theme.of(context).secondaryHeaderColor
: Theme.of(context).secondaryHeaderColor,
child: mxContent == null
child: noPic
? Text(fallbackLetters, style: TextStyle(color: Colors.white))
: null,
),