flutter_cache_manager_dio

Creator: coderz1093

Last updated:

Add to Cart

Description:

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

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.