flutter知识点

  • 加载本地图片:

1. lib同级目录下新建一个images文件夹

2. pubspec.yaml文件下,注意空格格式

assets:
  - images/img_load_fail.png

3. 代码中使用

image: new DecorationImage(
    image: new ExactAssetImage('images/img_load_fail.png'),
    fit: BoxFit.cover),

猜你喜欢

转载自blog.csdn.net/hard_working1/article/details/86157518