gpt4 book ai didi

android - flutter 中的 Glide 等效

转载 作者:行者123 更新时间:2023-12-04 11:30:32 25 4
gpt4 key购买 nike

我在原生 android 中使用我的 SDK 示例应用程序,使用 Glide 库加载图像,如下所示。

private void updateProfilePhoto(BadgeUIEntity badgeUIEntity) {
String profilePhotoChecksum = badgeUIEntity.profilePhotoChecksum();
String profilePhotoUrl = badgeUIEntity.profilePhotoUrl();
if (profilePhotoChecksum != null && !TextUtils.isEmpty(profilePhotoUrl)) {
try {
RequestOptions requestOptions = RequestOptions.signatureOf(new ObjectKey(profilePhotoChecksum));
Glide.with(this)
.applyDefaultRequestOptions(requestOptions)
.load(profilePhotoUrl).into(ivProfilePhoto);
} catch (Exception e) {
Timber.v(e);
}
}}
如何在 flutter 中渲染相同的图像?
我不知道如何在 Flutter 中处理这个校验和。

最佳答案

cached_network_image 相当于 Flutter 的 Glide 或 Picasso。
它将使用默认缓存逻辑,但如果您愿意,您可以传递自己的 CacheManager给它。我不确定您为什么需要校验和,但我认为这与缓存管理有关。

关于android - flutter 中的 Glide 等效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62994529/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com