Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Image.asset("assets/test.webp"),
),
);
}
https://youtu.be/IbfNTIWYUKg 使用透明动画webp时,会留下残像。 原始图片位于https://drive.google.com/file/d/1YaUjKrAxwsWW71q03I0G5RBRdgAUjuZy/view?usp=sharing
上