错误:
======= 图像资源服务捕获的异常 ====================================== =========== 抛出以下断言解析图像编解码器:无法加载资产:images/google-logo.png
抛出异常时,这是堆栈:#0 PlatformAssetBundle.load (package:flutter/src/services/asset_bundle.dart:227:7) #1 AssetBundleImageProvider._loadAsync (package:flutter/src/painting/image_provider.dart :667:14) 图片提供者:AssetImage(bundle: null, name: "images/google-logo.png") 图片键: AssetBundleImageKey(bundle: PlatformAssetBundle#36c1f(), name: "images/google-logo.png" , 规模: 1.0)
我的“pubspec.yaml”文件:
'''flutter:
uses-material-design: true
assets:
- images/facebook-logo.png
- images/google-logo.png '''
我正在使用以下代码将图像加载到页面中: IN 'sign in page.dart' 文件:
'''CustomRaisedButton(
child: Image.asset('images/google-logo.png'),
color: Colors.white,
onPressed: () {},
),'''