efortuna / memechat

a meme-based chat application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GoogleUserCircleAvatar breaking behaviour change

gbaccetta opened this issue · comments

Hello, this does not work anymore:
const GoogleUserCircleAvatar(
String profileImageUrl,
);

source: https://groups.google.com/forum/#!topic/flutter-dev/7MRiSpxDeo0

To make the sample works I replaced in line 234:

child: new GoogleUserCircleAvatar(message.sender.imageUrl),

with:

child: new CircleAvatar(backgroundImage: new NetworkImage(message.sender.imageUrl),

This works for me. Thank you.