flutter解析html代码

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>
      """
        ),
      ),
    );
  }
}

猜你喜欢

转载自blog.csdn.net/chaogaoxiaojifantong/article/details/114307256