Answers for "add assets folder flutter"

7

flutter image asset

// pubspec.yaml
flutter:
  assets:
    - graphics/

// Inside your widget
Image(image: AssetImage('graphics/background.png'))
Posted by: Guest on June-23-2020
0

Access files in flutter assets folder

final manifestJson = await DefaultAssetBundle.of(context).loadString('AssetManifest.json');
final images = json.decode(manifestJson).keys.where((String key) => key.startsWith('assets/images'));
Posted by: Guest on September-26-2021

Code answers related to "add assets folder flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language