我使用 flutter html 组件来显示一些 html 内容,当 html 带有 gif 图像时,渲染性能的 fps 非常低。
滚动页面时,渲染一直卡住。我该怎么做才能解决它?这是我的代码:
if (item.content != "")
Html(
data: item.content,
style: {
"body": Style(
fontSize: FontSize(19.0),
),
},
onLinkTap: (url) => CommonUtils.launchUrl(url),
),
这是flutter_html
dependency:
flutter_html: 1.2.0