Member-only story
FlutterError: Unable to load asset
How to load an asset in Flutter.
Sep 15, 2021
The simplest way is to reference your assest folder instead of the asset itself, just make sure you use proper indentations as the pubspec.yaml
is indent sensitive.
flutter: uses-material-design: true
assets:
- images/
and you can simply access each image as
new Image.asset('images/pizza1.png',width:300,height:100)