html嵌入flutter
使用flutter_html插件
flutter_html: ^1.2.0版本

class _NoticeDetailState extends State<NoticeDetail> {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: CustomWidgets.appBarWhite(context, '详情'),
      body: SingleChildScrollView(
        scrollDirection: Axis.vertical,
        child: Html(
          data: """
       <p>有图片的<img src="http://127.0.0.1/files/20210301/d9488cdc6bbc44fb98987650fc98d86b.jpg" alt="" width="1680" height="1050" /></p>
      """
        ),
      ),
    );
  }
}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐