本文主要是介绍flutter 图片资源找不到No file or variants found for asset:,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
先说下加载图片的流程
1.pubspec.yaml里配置图片
flutter:# The following line ensures that the Material Icons font is# included with your application, so that you can use the icons in# the material Icons class.uses-material-design: trueassets: // 对齐上面的依赖内容- images/apple.png// 该路径是相对pubspec.yaml的文件路径
/ - -images/apple.png// 该路径是相对pubspec.yaml的文件路径,相当于在pubspec.yaml目录级别下建立images文件夹。如果图片比较多,可以只配置图片的路径:如
flutter:uses-material-design: trueassets:
//代表配置图片目录的路径- images/
2.复制文件到文件夹
3.使用
Image.asset("images/apron.png",width: 100,height: 100)
这篇关于flutter 图片资源找不到No file or variants found for asset:的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!