美文网首页
flutter 加载图片系列

flutter 加载图片系列

作者: 聆听璇律 | 来源:发表于2018-09-14 10:24 被阅读32次

    一.加载本地图片


    flutter.png flutter2.png

    如图所示:
    1.打开pubspec.yaml在最后加入assets:- image/goods_image.png(这里根据你自己的项目图片目录以及图片名字来配)

    1. 在image中引用本地资源图片
    new Image.asset(
                  'images/goods_image.png', width: 100.0, height: 100.0,fit:BoxFit.contain ,)
    

    二.加载网络图片
    new Image.network('https://gss0.baidu.com/-vo3dSag_xI4khGko9WTAnF6hhy/zhidao/pic/item/38dbb6fd5266d0163c8e0abe902bd40734fa3594.jpg'),
    三.加载本地文件图片
    new Image.file(new File("/Users/gs/Downloads/1.jpeg")),

    相关文章

      网友评论

          本文标题:flutter 加载图片系列

          本文链接:https://www.haomeiwen.com/subject/zogngftx.html