efortuna / memechat

a meme-based chat application
542 stars 150 forks source link

GoogleUserCircleAvatar breaking behaviour change #24

Closed gbaccetta closed 6 years ago

gbaccetta commented 6 years ago

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

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

gbaccetta commented 6 years ago

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),

wangvic commented 6 years ago

This works for me. Thank you.