Last updated:
0 purchases
flutter cache manager dio
Flutter_cache_manager_dio #
Language: English | 中文简体
flutter_cache_manager with dio
Getting Started #
A Dio implementation for flutter_cache_manager
Like flutter_cache_manager_firebase
var dio = Dio();
dio.interceptors.add(LogInterceptor(responseBody: false));
DioCacheManager.initialize(dio);
var file = await DioCacheManager.instance.getSingleFile(url);
copied to clipboard
Can use Dio Interceptors etc.
cached_network_image can use
Like glide with okhttp
CachedNetworkImage(
cacheManager: DioCacheManager.instance,
imageUrl: url,
placeholder: (context, url) => CircularProgressIndicator(),
errorWidget: (context, url, error) => Container(
child: Text(
'error',
),
),
);
'''
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.