FlutterError: Unable to load asset

后端 未结 22 3335
死守一世寂寞
死守一世寂寞 2020-11-30 10:31

This is the folder structure of my app

.idea
.vscode
android
build
fonts
 Oxygen-Bold.tff
 Oxygen-Light.tff
 Oxygen-Regular.tff
images
 pizza0.png
 pizza1.pn         


        
22条回答
  •  自闭症患者
    2020-11-30 11:12

    You should consider the indentation for assets

    flutter:
    
      assets:
        - images/pizza1.png
        - images/pizza0.png
    

    More details:

    flutter:
    
    [2 whitespaces or 1 tab]assets:
    [4 whitespaces or 2 tabs]- images/pizza1.png
    [4 whitespaces or 2 tabs]- images/pizza0.png
    

提交回复
热议问题