Home > Enterprise >  Why is flutter unable to load asset image?
Why is flutter unable to load asset image?

Time:08-05

No errors in the code and as far as I can see the pubspec.yaml file is functional, as it worked before.

@override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: SafeArea(
          child: Column(
            children: [
              Card(
                child: Image.asset('anyaparent.jpeg'),
              ),
            ],
          ),
        ),
      ),
    );

Error text "Unable to load asset"

[1]: https://i.stack.imgur.com/GeTW2.png The pubspec.yaml file

CodePudding user response:

try doing like this

Image.asset('images/anyaparent.jpeg'),
  • Related