Last updated:
0 purchases
asset resolver
asset_resolver #
The asset_resolver package helps you to generate a .dart file that contains all assets according to pubspec.yaml.
Getting started #
Install #
dev_dependencies:
asset_resolver: any # Replace 'any' with version number.
build_runner: any # Optional.
copied to clipboard
Usage #
flutter pub run build_runner build
copied to clipboard
More info about build_runner.
Options #
flutter:
assets:
- assets/images/
asset_resolver:
output_class: Assets
output_path: lib/assets.dart
## Optional
# strip_field_prefix: assets
# ignore_dpr: true
# output_field_suffix: true
# field_style: camelCase
# package_name: example
copied to clipboard
output_class: The output class name, default Assets
output_path: Output file path, default lib/assets.dart
ignore_dpr: Whether to ignore dpr folders, such as 1.5x, 2.0x, 3.0x
output_field_suffix: Whether the field name contains a suffix name, such as PNG, JSON
strip_field_prefix: Intercept the prefix of the field name. for example: assets/images/a.png, intercept to assets; the final generated name is images_a_png
field_style: The style of field naming; Support camelCase, underScoreCase; Default camelCase
package_name: If it is a package, the resulting path is: packages/{package_name}/{asset_path}
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.