Я хочу знать, есть ли какая-либо возможность удалить или не сохранять изображение в кеше, как Пикассо..
мой код:
Код: Выделить всё
var annotatedImg = CachedNetworkImage(
fit: BoxFit.fill,
imageUrl: Constants.IMAGE_BASE_URL + widget._fileId + Constants.CONTOUR_IMG_SUFFIX,
placeholder: (context, url) => progressBar,
errorWidget: (context, url, error) => new Icon(Icons.error),
);
Код: Выделить всё
annotatedImg.cacheManager.emptyCache();
Подробнее здесь: https://stackoverflow.com/questions/570 ... ge-flutter
Мобильная версия