flutter Unable to load asset: assets/images/IMG_3258.jpg

在添加图片应用时,不能将图片像Ios一样直接添加上去,否侧就会报如下的错误。

flutter Unable to load asset: assets/images/IMG_3258.jpg

1.在根目录下创建assets文件夹

2.在assets下创建images文件夹,将IMG_3258.jpg图片放入

3.在pubspec.yml 中添加上,如下图所示。

如图所示.png

4,调用方法

      Widget _startTextViewLine(BuildContext context){ return new ListView(
children: [
  new Image.asset(
    'assets/images/IMG_3258.jpg',
    width: 320,
    height: 260,
    fit: BoxFit.cover,
 //        color: Colors.orange,

  ),

],
);

}

你可能感兴趣的:(flutter Unable to load asset: assets/images/IMG_3258.jpg)