The Error:
======= Exception caught by image resource service ================================================ The following assertion was thrown resolving an image codec: Unable to load asset: images/google-logo.png
When the exception was thrown, this was the stack: #0 PlatformAssetBundle.load (package:flutter/src/services/asset_bundle.dart:227:7) #1 AssetBundleImageProvider._loadAsync (package:flutter/src/painting/image_provider.dart:667:14) Image provider: AssetImage(bundle: null, name: "images/google-logo.png") Image key: AssetBundleImageKey(bundle: PlatformAssetBundle#36c1f(), name: "images/google-logo.png", scale: 1.0)
My 'pubspec.yaml' file:
'''flutter:
uses-material-design: true
assets:
- images/facebook-logo.png
- images/google-logo.png '''
I am loading the image into the page using the following code: IN 'sign in page.dart' file:
'''CustomRaisedButton(
child: Image.asset('images/google-logo.png'),
color: Colors.white,
onPressed: () {},
),'''