如何在颤振中添加图像

时间:2021-07-27 09:19:44

标签: image flutter

我在添加图片时遇到问题...我的代码是

 child: Column(
             
                children: [
                Image.asset('assets/logo.jpg'),
                Text('This is SplashScreen')
]
),

但还没有工作..我也启用了 pubspec.yamel assets commnet 但没有改变任何东西

2 个答案:

答案 0 :(得分:0)

在 pubspec 文件中的资产标签后添加图像的路径,如下所示:

  assets:
    - assets/ilustration/b1.png

然后重建您的应用程序

答案 1 :(得分:0)

确保您在主树中有一个 assets 文件夹,而不是嵌套在另一个文件夹中。