malibayram/cached_network_image_builder
一個用於快取網路圖片的組件;透過基本的HTTP請求檢查圖片是否已經儲存,以避免重複下載。
- Stars
- 4
- Forks
- 2
- 最近推送(UTC)
- 2024年1月21日
- 專案狀態
- 未封存
語言C++CMakeDartRubySwiftHTMLCKotlinObjective-C
使用的依賴
依賴清單 5 項
- flutter
{"sdk":"flutter"} - http
^1.2.0 - path_provider
^2.1.2 - flutter_test開發依賴
{"sdk":"flutter"} - flutter_lints開發依賴
^3.0.1
原始 README
以下為英文專案原文快照,最新內容請造訪 GitHub。
展開 / 收合專案 README
cached_network_image_builder
A widget to cache your network image with downloading it via using basic http request and check it if it has already stored, so doesn't need to download it again.
Thanks to pixabay for free images.
Important note:
- The packages will download the image only once, which means it doesn't listen for changes on the server after downloading it.
How to use
- Basic usage:
CachedNetworkImageBuilder(
url: "https://cdn.pixabay.com/photo/2020/05/17/20/21/cat-5183427_1280.jpg",
builder: (imageFile) {
return Center(child: Image.file(imageFile));
},
),
- More customized usage:
CachedNetworkImageBuilder(
url: "misformatted_url_or_url_that_doesn't_contain_image",
builder: (image) {
return Center(child: Image.file(image));
},
// Optional Placeholder widget until image loaded from url
placeHolder: LinearProgressIndicator(),
// Optional error widget
errorWidget: Image.asset('assets/images/error_image.png'),
// Optional describe your image extensions default values are; jpg, jpeg, gif and png
imageExtensions: ['jpg', 'png'],
),