我正在使用此代码并且它可以工作,但是来自网络的 GIF 图像没有动画,它们按第一帧显示。
ListTile(
tileColor: Colors.white,
trailing: Icon(Icons.keyboard_arrow_right),
leading: CircleAvatar(
backgroundColor: Colors.transparent,
backgroundImage: NetworkImageWithRetry(snapshot.data[index]['avatar_url']),
),
title: Text(snapshot.data[index]['user_name']),
),
答案 0 :(得分:0)
问题来自 NetworkImageWithRetry()。
在本文发布时,NetworkImageWithRetry() 不支持 GIF 图像。它只显示 GIF 的第一帧。