shivlal tiwari
shivlal tiwari

Reputation: 39

while adding background image in circle Avatar from Assetsimage got an error ? how to fixed it

PlatformAssetBundle.load (package:flutter/src/services/asset_bundle.dart:224:7) #1 AssetBundleImageProvider._loadAsync (package:flutter/src/painting/image_provider.dart:672:14)

Image provider: AssetImage(bundle: null, name: "images/profile.png") Image key: AssetBundleImageKey(bundle: PlatformAssetBundle#3b91a(), name: "images/profile.png", scale: 1.0)

Upvotes: 0

Views: 214

Answers (1)

Niroop Nife
Niroop Nife

Reputation: 376

Make sure you're indentating for assets as

flutter:

  assets:
    - images/profile.png

Upvotes: 0

Related Questions