[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-oJABtYBp-1629332631551)(https://ducafecat.tech/2021/08/19/translation/exploring-blurhash-image-placeholder-in-flutter/2021-08-19-06-32-44.png)]
https://medium.com/flutterdevs/exploring-blurhash-image-placeholder-in-flutter-24dad611c487
https://github.com/ducafecat/getx_quick_start
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-odpQHWbo-1629332631553)(https://ducafecat.tech/2021/08/19/translation/exploring-blurhash-image-placeholder-in-flutter/2021-08-19-06-19-55.png)]
根据联想速度的不同,从网络中叠加一张图片可能需要几分钟时间。在获取图片时,完全可以预期它会显示一个占位符。有一些显示占位符的策略。例如,您可以显示一个彩色框。在任何情况下,如果占位符可以像真实的图片一样,那就更令人愉快了。因此,你可以使用 BlurHash。
在这个博客中,我们将探索 Flutter 图片占位符。我们将看到如何实现 blur hash 的演示程序,以及如何使用 BlurHash 作为图像占位符,在您的 flutter 应用程序中使用 flutter_blurhash
包。
https://pub.dev/packages/flutter_blurhash
BlurHash 是图片占位符的保守描述。它的工作原理是从图片生成一个散列字符串。生成的散列字符串将用于传递占位符。本文介绍了在 Flutter 应用程序中解析要作为图片占位符交付的 BlurHash 字符串的最佳方法。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-mpv0xzEU-1629332631553)(https://ducafecat.tech/2021/08/19/translation/exploring-blurhash-image-placeholder-in-flutter/demo.gif)]
这个演示视频展示了如何在 Flutter 中使用 blurhash。它展示了 blurhash 如何在您的 Flutter 应用程序中使用 flutter_blurhash
包工作。它显示了图像占位符的紧凑表示形式。它会显示在你的设备上。
这里有 BlurHash 的构造函数:
const BlurHash({
required this.hash,
Key? key,
this.color = Colors.blueGrey,
this.imageFit = BoxFit.fill,
this.decodingWidth = _DEFAULT_SIZE,
this.decodingHeight = _DEFAULT_SIZE,
this.image,
this.onDecoded,
this.onReady,
this.onStarted,
this.duration = const Duration(milliseconds: 1000),
this.curve = Curves.easeOut,
})
构造函数期望您传递一个边界散列,它是利用 BlurHash 算法得到的散列字符串。万一你现在没有散列字符串,你可以利用他们的权威站点 blurha。Sh 来创建您需要利用的图片的散列字符串。
BlurHash 的一些参数是:
将依赖项添加到 pubspec ー yaml 文件。
flutter_blurhash: ^0.6.0
import 'package:flutter_blurhash/flutter_blurhash.dart';
$ flutter packages get
你需要分别在你的代码中实现它:
在 lib 文件夹中创建一个名为 main.dart 的新 dart 文件。
下面是一个只传递散列参数的模型。因为没有传递 Image 参数,它将显示占位符直到时间结束。
BlurHash(
hash: 'LHA-Vc_4s9ad4oMwt8t7RhXTNGRj',
),
当我们运行应用程序时,我们应该得到屏幕的输出,就像下面的屏幕截图一样。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-buzwvsTD-1629332631554)(https://ducafecat.tech/2021/08/19/translation/exploring-blurhash-image-placeholder-in-flutter/2021-08-19-06-27-18.png)]
在主体中,我们将添加 BlurHash()
方法。在此方法中,我们将添加 imageFit,这意味着您可以通过将 BoxFit 枚举作为 imageFit 参数传递给构造函数来设置如何将图像适配到可访问空间。如果没有传递参数,值默认为 BoxFit.fill。imageFit 竞争的使用类似于 FittedBox 的合适属性。目前,我们将增加持续时间意味着图片已有效下载后,图片将活跃一个给定的期限之前完全显示。持续时间可以通过传递持续时间尊重作为持续时间争用来设置。如果没有传递参数,默认值是 1 秒
BlurHash(
imageFit: BoxFit.fitWidth,
duration: const Duration(seconds: 4),
curve: Curves.bounceInOut,
hash: 'LHA-Vc_4s9ad4oMwt8t7RhXTNGRj',
image: 'https://images.unsplash.com/photo-1486072889922-9aea1fc0a34d?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8bW91dGFpbnxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60',
),
现在,我们将设置曲线意味着动画曲线可以通过设置曲线参数。默认值是 Curves.easeOut。最后,我们将添加 image 表示图像参数传递的位置,图像的远程 URL 作为值。当我们运行应用程序时,我们应该得到屏幕的输出,就像下面的屏幕截图一样。
现在,我们将设置曲线意味着动画曲线可以通过曲线参数设置。默认值是 Curves.easeOut。最后,我们将添加一个图像,这意味着图像参数是以图片的远端 URL 作为值传递的。当我们运行应用程序时,我们应该得到屏幕的输出,就像下面的屏幕截图一样。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-IBy1C0jx-1629332631554)(https://ducafecat.tech/2021/08/19/translation/exploring-blurhash-image-placeholder-in-flutter/2021-08-19-06-29-17.png)]
import 'package:flutter/material.dart';
import 'package:flutter_blur_hash_demo/splash_screen.dart';
import 'package:flutter_blurhash/flutter_blurhash.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Splash(),
);
}
}
class BlurHashDemo extends StatelessWidget {
@override
Widget build(BuildContext context) =>
Scaffold(
appBar: AppBar(
backgroundColor: Colors.teal,
automaticallyImplyLeading: false,
title: Text("Flutter BlurHash Demo")
),
body: Center(
child: BlurHash(
imageFit: BoxFit.fitWidth,
duration: const Duration(seconds: 4),
curve: Curves.bounceInOut,
hash: 'LHA-Vc_4s9ad4oMwt8t7RhXTNGRj',
image: 'https://images.unsplash.com/photo-1486072889922-9aea1fc0a34d?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8bW91dGFpbnxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60',
),
),
);
}
在这篇文章中,我简单地解释了 BlurHash 图像占位符的基本结构; 您可以根据自己的选择修改这段代码。这是一个小的介绍 BlurHash 图片占位符用户交互从我这边,它的工作使用 Flutter。
© 猫哥
https://ducafecat.tech/
https://github.com/ducafecat
微信群 ducafecat
b 站 https://space.bilibili.com/404904528
https://github.com/ducafecat/getx_quick_start
https://github.com/ducafecat/flutter_learn_news
https://getstrapi.cn
https://ducafecat.tech/categories/%E8%AF%91%E6%96%87/
https://ducafecat.tech/categories/%E5%BC%80%E6%BA%90/
https://space.bilibili.com/404904528/channel/detail?cid=111585
https://space.bilibili.com/404904528/channel/detail?cid=123470
https://space.bilibili.com/404904528/channel/detail?cid=106755
https://space.bilibili.com/404904528/channel/detail?cid=144262
https://space.bilibili.com/404904528/channel/detail?cid=177519
https://space.bilibili.com/404904528/channel/detail?cid=177514
https://space.bilibili.com/404904528/channel/detail?cid=130578